| 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 |
| 12 |
Members