mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
11 lines
201 B
Zig
11 lines
201 B
Zig
use "libc.zig";
|
|
|
|
// purposefully conflicting function with main.zig
|
|
// but it's private so it should be OK
|
|
fn private_function() {
|
|
puts("it works!");
|
|
}
|
|
|
|
fn print_text() {
|
|
private_function();
|
|
}
|