Printf prints an normal message
(msg string, v ...interface{})
| 89 | |
| 90 | // Printf prints an normal message |
| 91 | func Printf(msg string, v ...interface{}) { |
| 92 | fmt.Fprintf(color.Output, "%s%s %s", indent, ColorGray.Sprint("•"), fmt.Sprintf(msg, v...)) |
| 93 | } |
| 94 | |
| 95 | // Askf prints an question with optional format verbs. The leading symbol differs in color depending |
| 96 | // on whether the input is masked. |