summaryrefslogtreecommitdiff
path: root/exercises/999_the_end.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2023-01-22 13:12:53 +0100
committerChris Boesch <chrboesch@noreply.codeberg.org>2023-01-22 13:12:53 +0100
commit9d9dc1dacfa43c8c029a1829ee14e34c70ca6d12 (patch)
treef1569ad909718a3dc6d16a102917c2bb80eca940 /exercises/999_the_end.zig
parent419b388f8dbd50876fd07ecc003b3fb790a4e028 (diff)
changed 'the_end' to '999_the_end'
Diffstat (limited to 'exercises/999_the_end.zig')
-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", .{});
+}