Closed glyh closed 1 month ago
This line
try stdout.print("{s}", .{input});
needs to have an additional newline, like this
try stdout.print("{s}\n", .{input});
This is because linenoize will clear the line the cursor is currently for displaying the prompt and input.
The following won't work: