Skip to content

Commit 818cb4c

Browse files
refactor(cli): add additional newline escape sequence to stdout
1 parent b0eb532 commit 818cb4c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cli/cli.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ fn progressBar(self: *CLI) !void {
190190
fn draw(self: *CLI) !void {
191191
STD.debug.print("{s}\n", .{ASCII_ART});
192192

193-
STD.debug.print("{s}", .{self.current_exercise_stdout.items});
193+
STD.debug.print("{s}\n", .{self.current_exercise_stdout.items});
194194
if (!(self.did_current_exercise_compile)) {
195195
STD.debug.print("\n{s}", .{self.current_exercise_stderr.items});
196196
}

0 commit comments

Comments
 (0)