zig/example/hello_world/hello.zig
Andrew Kelley 4bf149795a update hello world examples
edge cases matter

See #510
2017-10-01 12:40:30 -04:00

6 lines
107 B
Zig

const io = @import("std").io;
pub fn main() -> %void {
%return io.stdout.printf("Hello, world!\n");
}