zig/test/hello.zig
2015-11-04 17:15:46 -07:00

5 lines
88 B
Zig

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