From 2a56978de31d19a4cd75907783cb1782d4f402e4 Mon Sep 17 00:00:00 2001 From: Chris Boesch <48591413+chrboesch@users.noreply.github.com> 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