From 419b388f8dbd50876fd07ecc003b3fb790a4e028 Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Sat, 21 Jan 2023 23:54:11 +0100 Subject: [PATCH] fix mac error --- exercises/the_end.zig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/exercises/the_end.zig b/exercises/the_end.zig index d6b29e0..4ff2449 100644 --- a/exercises/the_end.zig +++ b/exercises/the_end.zig @@ -1,6 +1,8 @@ // This is the end for now! // More exercises will follow... +const print = @import("std").debug.print; + pub fn main() void { - @import("std").debug.print("This is the end for now!\nWe hope you had fun and were able to learn a lot, so visit us again when the next exercises are available.", .{}); + print("\nThis is the end for now!\nWe hope you had fun and were able to learn a lot, so visit us again when the next exercises are available.\n", .{}); }