From faf2c7a0f1c8c04f03231d6c1b543dd623cc0a1a Mon Sep 17 00:00:00 2001 From: Piyush Date: Sat, 4 Oct 2025 20:13:25 +0530 Subject: [PATCH] Create helloworld-zig.zig --- helloworld-zig.zig | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 helloworld-zig.zig diff --git a/helloworld-zig.zig b/helloworld-zig.zig new file mode 100644 index 0000000..575f50a --- /dev/null +++ b/helloworld-zig.zig @@ -0,0 +1,6 @@ +const std = @import("std"); + +pub fn main() !void { + const stdout = std.io.getStdOut().writer(); + try stdout.print("Hello, World!\n", .{}); +} \ No newline at end of file