aboutsummaryrefslogtreecommitdiff
path: root/go/ssa/testdata/src/fmt/fmt.go
blob: cacfeef2066e2142efd29fbaead7039009f0240b (plain)
1
2
3
4
5
6
7
8
9
10
11
package fmt

func Sprint(args ...interface{}) string
func Sprintln(args ...interface{}) string
func Sprintf(format string, args ...interface{}) string

func Print(args ...interface{}) (int, error)
func Println(args ...interface{})
func Printf(format string, args ...interface{}) (int, error)

func Errorf(format string, args ...interface{}) error