(instruction string, command string)
| 49 | } |
| 50 | |
| 51 | func Next(instruction string, command string) { |
| 52 | WithPrefix(instruction, "👉 ") |
| 53 | emptyLine() |
| 54 | Indented(command) |
| 55 | emptyLine() |
| 56 | } |
| 57 | |
| 58 | func WithPrefix(s string, prefix string) { |
| 59 | lines := strings.Split(strings.TrimSpace(s), "\n") |
no test coverage detected