zig/example/hello_world/hello.zig

8 lines
124 B
Zig

export executable "hello";
import "std.zig";
pub fn main(args: [][]u8) %void => {
stdout.printf("Hello, world!\n");
}