aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/999_the_end.zig
blob: 4ff2449757b02b5f0a7c8d77c239669bfa378eee (plain)
1
2
3
4
5
6
7
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", .{});
}