mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-07 14:24:43 +00:00
11 lines
205 B
Zig
11 lines
205 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!");
|
|
}
|
|
|
|
pub fn print_text() {
|
|
private_function();
|
|
}
|