From 8f67cb8c02e3c42d23b9aa423651862c3081fdeb Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Thu, 9 Mar 2023 12:20:45 +0100 Subject: [PATCH] added line feed --- exercises/096_memory_allocation.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/exercises/096_memory_allocation.zig b/exercises/096_memory_allocation.zig index 7843b93..d490fdb 100644 --- a/exercises/096_memory_allocation.zig +++ b/exercises/096_memory_allocation.zig @@ -69,6 +69,7 @@ pub fn main() !void { for (avg) |val| { std.debug.print("{d:.2} ", .{val}); } + std.debug.print("\n", .{}); } // For more details on memory allocation and the different types of