Files
zig/test/incremental/llvm/hello_world.zig
Jakub Konka 2875216f8e test: fix x86_64-macos failures
This is just a temporary fix - I would like to unify all of x86_64
tests across linux and macos OSes.
2022-04-28 18:35:01 +02:00

13 lines
176 B
Zig

extern fn puts(s: [*:0]const u8) c_int;
pub fn main() void {
_ = puts("hello world!");
}
// run
// backend=llvm
// target=x86_64-linux,x86_64-macos
//
// hello world!
//