1
0
Fork 0
mirror of https://github.com/ratfactor/ziglings synced 2024-05-05 01:56:03 +02:00
ziglings/exercises/999_the_end.zig
2023-01-22 13:12:53 +01:00

9 lines
284 B
Zig

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