mirror of
https://github.com/ziglang/zig.git
synced 2025-12-16 03:03:09 +00:00
14 lines
187 B
Zig
14 lines
187 B
Zig
export executable "test";
|
|
|
|
use "libc.zig";
|
|
use "foo.zig";
|
|
|
|
fn _start() -> unreachable {
|
|
private_function();
|
|
}
|
|
|
|
fn private_function() -> unreachable {
|
|
print_text();
|
|
exit(0);
|
|
}
|