Print appends args to the message output.
(args ...interface{})
| 86 | type Printer interface { |
| 87 | // Print appends args to the message output. |
| 88 | Print(args ...interface{}) |
| 89 | |
| 90 | // Printf writes a formatted string. |
| 91 | Printf(format string, args ...interface{}) |
no outgoing calls