From 8adecdecfc4963cd8aaf506dcb4e7f37e825b22b Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Sun, 12 Jul 2020 23:53:34 +0800 Subject: [PATCH] feat(helloworld): add helloworld.zig --- helloworld.zig | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 helloworld.zig diff --git a/helloworld.zig b/helloworld.zig new file mode 100644 index 0000000..971eb21 --- /dev/null +++ b/helloworld.zig @@ -0,0 +1,6 @@ +const std = @import("std"); + +pub fn main() void { + std.debug.warn("Hello, world!\n", .{}); +} +