zig/example/hello_world/hello_libc.zig
2016-01-25 17:08:18 -07:00

12 lines
194 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;
}