001_hello.patch 267 B

12345678910
  1. --- exercises/001_hello.zig 2023-10-03 22:15:22.122241138 +0200
  2. +++ answers/001_hello.zig 2023-10-05 20:04:06.846096282 +0200
  3. @@ -16,6 +16,6 @@
  4. //
  5. const std = @import("std");
  6. -fn main() void {
  7. +pub fn main() void {
  8. std.debug.print("Hello world!\n", .{});
  9. }