aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises
diff options
context:
space:
mode:
Diffstat (limited to 'exercises')
-rw-r--r--exercises/999_the_end.zig8
1 files changed, 8 insertions, 0 deletions
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", .{});
+}