zig/example/hello_world/hello.zig
2016-01-23 02:14:01 -07:00

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");
}