github.com/cockroachdb/tools@v0.0.0-20230222021103-a6d27438930d/go/ssa/testdata/src/fmt/fmt.go (about)

     1  package fmt
     2  
     3  func Sprint(args ...interface{}) string
     4  func Sprintln(args ...interface{}) string
     5  func Sprintf(format string, args ...interface{}) string
     6  
     7  func Print(args ...interface{}) (int, error)
     8  func Println(args ...interface{})
     9  func Printf(format string, args ...interface{}) (int, error)
    10  
    11  func Errorf(format string, args ...interface{}) error