authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2022-02-18 16:46:48 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2022-02-18 16:46:48 -08:00
logc39e4d6ff492cf72c9d2f271bf0f39d121f83bc0
tree86f9c8a0d925deb276abe494efefae9e858a9e10
parentabd610c01689a255be37ac5c95952be29896dbc5

common- comptime is redundant here


1 files changed, 2 insertions(+), 2 deletions(-)

scripts/_common.zig+2-2
...@@ -60,8 +60,8 @@ pub fn Main(comptime T: type) type {...@@ -60,8 +60,8 @@ pub fn Main(comptime T: type) type {
60 break;60 break;
61 }61 }
6262
63 std.debug.print("{s}", .{comptime ansi.csi.CursorUp(1)});63 std.debug.print("{s}", .{ansi.csi.CursorUp(1)});
64 std.debug.print("{s}", .{comptime ansi.csi.EraseInLine(0)});64 std.debug.print("{s}", .{ansi.csi.EraseInLine(0)});
65 std.debug.print("{d}\n", .{line_num});65 std.debug.print("{d}\n", .{line_num});
66 line_num += 1;66 line_num += 1;
67 }67 }