diff --git a/hello.zig b/hello.zig new file mode 100644 index 0000000..c303e5c --- /dev/null +++ b/hello.zig @@ -0,0 +1,7 @@ +const std = @import("std"); + +pub fn main() !void { + const stdout = std.io.getStdOut().writer(); + try stdout.print("Hello, {s}!\n", .{"world"}); +} +