mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 22:33:08 +00:00
14 lines
209 B
Zig
14 lines
209 B
Zig
export executable "test-multiple-files";
|
|
|
|
use "libc.zig";
|
|
use "foo.zig";
|
|
|
|
export fn _start() -> unreachable {
|
|
private_function();
|
|
}
|
|
|
|
fn private_function() -> unreachable {
|
|
print_text();
|
|
exit(0);
|
|
}
|