From 9d9dc1dacfa43c8c029a1829ee14e34c70ca6d12 Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Sun, 22 Jan 2023 13:12:53 +0100 Subject: changed 'the_end' to '999_the_end' --- exercises/999_the_end.zig | 8 ++++++++ exercises/the_end.zig | 8 -------- 2 files changed, 8 insertions(+), 8 deletions(-) create mode 100644 exercises/999_the_end.zig delete mode 100644 exercises/the_end.zig (limited to 'exercises') diff --git a/exercises/999_the_end.zig b/exercises/999_the_end.zig new file mode 100644 index 0000000..4ff2449 --- /dev/null +++ b/exercises/999_the_end.zig @@ -0,0 +1,8 @@ +// This is the end for now! +// More exercises will follow... + +const print = @import("std").debug.print; + +pub fn main() void { + 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", .{}); +} diff --git a/exercises/the_end.zig b/exercises/the_end.zig deleted file mode 100644 index 4ff2449..0000000 --- a/exercises/the_end.zig +++ /dev/null @@ -1,8 +0,0 @@ -// This is the end for now! -// More exercises will follow... - -const print = @import("std").debug.print; - -pub fn main() void { - 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", .{}); -} -- cgit v1.2.3