commit 47e25b00d6d5013f4a2891955056b974ddc6c0c2 Author: coast Date: Sun Aug 10 22:29:38 2025 +0330 test commit! diff --git a/README.md b/README.md new file mode 100644 index 0000000..34452c9 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +First repo on the instance! Just for tests! diff --git a/main.zig b/main.zig new file mode 100644 index 0000000..426ae1f --- /dev/null +++ b/main.zig @@ -0,0 +1,7 @@ +const std = @import("std"); + +pub fn main() void +{ + std.debug.print("hello! i am {s}!\n", .{"coast"}); + return; +}