Print shows a message to the user. It formats the text as fmt.Print would and adds a final \n if not already present. For line-based UI, Print writes to standard error. (Standard output is reserved for report data.)
(...interface{})
| 213 | // For line-based UI, Print writes to standard error. |
| 214 | // (Standard output is reserved for report data.) |
| 215 | Print(...interface{}) |
| 216 | |
| 217 | // PrintErr shows an error message to the user. |
| 218 | // It formats the text as fmt.Print would and adds a final \n if not already present. |
no outgoing calls
no test coverage detected