zig/example/hello_world/hello.zig
2016-01-25 17:08:18 -07:00

8 lines
124 B
Zig

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