mirror of
https://github.com/ziglang/zig.git
synced 2026-01-28 10:15:24 +00:00
9 lines
163 B
Zig
9 lines
163 B
Zig
export executable "hello";
|
|
|
|
import "std.zig";
|
|
|
|
pub fn main(args: [][]u8) %void => {
|
|
//stderr.print_str("Hello, world!\n");
|
|
print_str("Hello, world!\n");
|
|
}
|