zig/example/hello_world/hello.zig
2016-01-16 00:07:34 -07:00

9 lines
132 B
Zig

export executable "hello";
import "std.zig";
pub fn main(args: [][]u8) i32 => {
print_str("Hello, world!\n");
return 0;
}