zig/test/hello.zig
2015-11-24 00:35:28 -07:00

5 lines
93 B
Zig

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