zig/test/hello.zig
2015-11-02 03:39:36 -07:00

7 lines
94 B
Zig

fn main(argc: isize, argv: *mut u8) -> isize {
puts("Hello, world!\n");
return 0;
}