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{})
| 185 | // For line-based UI, Print writes to standard error. |
| 186 | // (Standard output is reserved for report data.) |
| 187 | Print(...interface{}) |
| 188 | |
| 189 | // PrintErr shows an error message to the user. |
| 190 | // It formats the text as fmt.Print would and adds a final \n if not already present. |
nothing calls this directly
no outgoing calls
no test coverage detected