mirror of
https://github.com/ziglang/zig.git
synced 2025-12-12 01:03:13 +00:00
9 lines
132 B
Zig
9 lines
132 B
Zig
export executable "hello";
|
|
|
|
import "std.zig";
|
|
|
|
pub fn main(args: [][]u8) i32 => {
|
|
print_str("Hello, world!\n");
|
|
return 0;
|
|
}
|