diff --git a/zigrtiow/src/main.zig b/zigrtiow/src/main.zig index b27e58a..6756454 100644 --- a/zigrtiow/src/main.zig +++ b/zigrtiow/src/main.zig @@ -34,7 +34,7 @@ pub fn main() anyerror!void { const stdout = std.io.getStdOut(); - info("Writing image {d}x{d}\n", .{ image_width, image_height }); + info("Writing image {d}x{d}", .{ image_width, image_height }); try stdout.writer().print("P3\n{d} {d}\n255\n", .{ image_width, image_height }); var j: isize = image_height - 1; @@ -50,6 +50,7 @@ pub fn main() anyerror!void { try write_color(pixel_color); } } + info("Done", .{}); } test {