From 2f7ad3d5f8d1d233e65ae08cf03c60564914b1df Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Sat, 28 Feb 2026 15:05:24 -0800 Subject: [PATCH] remove this debug print in the test --- test.zig | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/test.zig b/test.zig index 06740a9f63e0ecdeb3c9f4ba31598a0a484b162e..79fc1083d91d3a5ea9efebd998057afb859a1328 100644 --- a/test.zig +++ b/test.zig @@ -35,27 +35,4 @@ test { // a5 22 a6 8e ea 9a 39 e9 6e 95 c4 f3 af 9c 66 4a // 30 68 2b d1 03 dd b7 00 ec 11 _ = &grid; - - const bg_black = "\x1b[40m"; - const bg_white = "\x1b[47m"; - const bg_blue = "\x1b[44m"; - const bg_reset = "\x1b[49m"; - - const fg_black = "\x1b[30m"; - const fg_white = "\x1b[37m"; - const fg_reset = "\x1b[39m"; - - for (0..grid.size) |y| { - for (0..grid.size) |x| { - std.debug.print("{s}", .{if (grid.hasSet(x, y)) - if (grid.isSet(x, y)) - bg_black ++ fg_black ++ "██" - else - bg_white ++ fg_white ++ " " - else - bg_blue ++ fg_white ++ " -"}); - } - std.debug.print("{s}", .{fg_reset ++ bg_reset}); - std.debug.print("\n", .{}); - } } -- 2.54.0