zig/example/multiple_files/main.zig

10 lines
121 B
Zig
Raw Normal View History

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