Println is a convenience method to Println to the defined output, fallback to Stderr if not set.
(i ...interface{})
| 1438 | |
| 1439 | // Println is a convenience method to Println to the defined output, fallback to Stderr if not set. |
| 1440 | func (c *Command) Println(i ...interface{}) { |
| 1441 | c.Print(fmt.Sprintln(i...)) |
| 1442 | } |
| 1443 | |
| 1444 | // Printf is a convenience method to Printf to the defined output, fallback to Stderr if not set. |
| 1445 | func (c *Command) Printf(format string, i ...interface{}) { |