Add main.zig

This commit is contained in:
2026-06-06 23:29:13 -06:00
parent 7609b560ba
commit 17fe9b6094

5
main.zig Normal file
View File

@@ -0,0 +1,5 @@
const std = @import("std");
pub fn main() void {
std.debug.print("Hello, {s}!\n", .{"World"});
}