the_end.zig 284 B

12345678
  1. // This is the end for now!
  2. // More exercises will follow...
  3. const print = @import("std").debug.print;
  4. pub fn main() void {
  5. 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", .{});
  6. }