diff options
| author | Chris Boesch <[email protected]> | 2023-01-21 23:54:11 +0100 |
|---|---|---|
| committer | Chris Boesch <[email protected]> | 2023-01-21 23:54:11 +0100 |
| commit | 419b388f8dbd50876fd07ecc003b3fb790a4e028 (patch) | |
| tree | 7c38b856b2cd126223f8783b4845ecceaad9a73d /exercises | |
| parent | 007f4d655b54f164bbe64c67f0cdd5971f578925 (diff) | |
| download | ziglings-419b388f8dbd50876fd07ecc003b3fb790a4e028.tar.xz ziglings-419b388f8dbd50876fd07ecc003b3fb790a4e028.zip | |
fix mac error
Diffstat (limited to 'exercises')
| -rw-r--r-- | exercises/the_end.zig | 4 |
1 files changed, 3 insertions, 1 deletions
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", .{}); } |
