feat(helloworld): add helloworld.zig

This commit is contained in:
2020-07-12 23:53:34 +08:00
parent 8ca114c021
commit 8adecdecfc

6
helloworld.zig Normal file
View File

@@ -0,0 +1,6 @@
const std = @import("std");
pub fn main() void {
std.debug.warn("Hello, world!\n", .{});
}