feat: add hello.zig

This commit is contained in:
2022-08-27 01:05:52 +08:00
parent 3c162d0335
commit d8477806f2

7
hello.zig Normal file
View File

@@ -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"});
}