zig/example/cat/main.zig
2016-01-13 18:15:51 -07:00

8 lines
76 B
Zig

export executable "cat";
pub main(argv: [][]u8) -> i32 {
return 0;
}