mirror of
https://github.com/ziglang/zig.git
synced 2025-12-10 16:23:07 +00:00
12 lines
212 B
Zig
12 lines
212 B
Zig
use "std.zig";
|
|
|
|
// purposefully conflicting function with main.zig
|
|
// but it's private so it should be OK
|
|
fn private_function() => {
|
|
print_str("OK 1\n");
|
|
}
|
|
|
|
pub fn print_text() => {
|
|
private_function();
|
|
}
|