mirror of
https://github.com/ziglang/zig.git
synced 2026-01-25 16:55:22 +00:00
10 lines
175 B
Zig
10 lines
175 B
Zig
export executable "hello";
|
|
|
|
import "std.zig";
|
|
|
|
pub fn main(args: [][]u8) i32 => {
|
|
//stderr.print_str("Hello, world!\n");
|
|
print_str("Hello, world!\n");
|
|
return 0;
|
|
}
|