(msg string, val ...interface{})
| 7 | // translate the message and arguments to its Chinese counterpart. |
| 8 | type Printer interface { |
| 9 | Sprintf(msg string, val ...interface{}) string |
| 10 | } |
| 11 | |
| 12 | // BasePrinter is the default printer for common use. It uses fmt.Sprintf underneath. |
no outgoing calls