exercises/patches/patches/001_hello.patch
2026-01-04 14:17:27 +01:00

11 lines
267 B
Diff

--- exercises/001_hello.zig 2026-01-04 14:04:52.752848018 +0100
+++ answers/001_hello.zig 2026-01-04 14:04:54.209877278 +0100
@@ -16,6 +16,6 @@
//
const std = @import("std");
-fn main() void {
+pub fn main() void {
std.debug.print("Hello world!\n", .{});
}