zig/example/multiple_files/main.zig
Andrew Kelley 55b8472374 refactor code to prepare for multiple files
verbose compiler output is now behind --verbose flag
2015-11-30 20:00:39 -07:00

10 lines
121 B
Zig

export executable "test";
use "libc.zig";
use "foo.zig";
fn _start() -> unreachable {
print_text();
exit(0);
}