Puts formats a message and then prints to Stdout using the Default Messenger. It does not prefix the message, does not color it, or otherwise decorate it. It does add a line feed.
(msg string, args ...interface{})
| 216 | // |
| 217 | // It does add a line feed. |
| 218 | func Puts(msg string, args ...interface{}) { |
| 219 | Default.Puts(msg, args...) |
| 220 | } |
| 221 | |
| 222 | // Print prints exactly the string given. |
| 223 | // |