zig/test/hello.zig
2015-11-01 22:21:33 -07:00

7 lines
92 B
Zig

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