(s string, prefix string)
| 56 | } |
| 57 | |
| 58 | func WithPrefix(s string, prefix string) { |
| 59 | lines := strings.Split(strings.TrimSpace(s), "\n") |
| 60 | for i := 0; i < len(lines); i++ { |
| 61 | PrintToConsole(prefix + strings.TrimSpace(lines[i]) + "\n") |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | func emptyLine() { |
| 66 | PrintToConsole("\n") |
no outgoing calls
no test coverage detected