Add Hello World

This commit is contained in:
joachimschmidt557 2019-05-31 21:00:16 +02:00
parent 1ef7bd327e
commit 4368f6a6a3

5
helloworld.zig Normal file
View file

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