1
0
Fork 0
mirror of https://codeberg.org/andyscott/ziglings.git synced 2025-04-27 13:37:56 -04:00

fix mac error

This commit is contained in:
Chris Boesch 2023-01-21 23:54:11 +01:00
parent 007f4d655b
commit 419b388f8d

View file

@ -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", .{});
}