zig/example/hello_world/hello_libc.zig
2016-01-23 02:14:01 -07:00

12 lines
191 B
Zig

export executable "hello";
#link("c")
extern {
fn printf(__format: &const u8, ...) i32;
}
export fn main(argc: i32, argv: &&u8) i32 => {
printf(c"Hello, world!\n");
return 0;
}