mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 22:04:21 +00:00
8 lines
176 B
Zig
8 lines
176 B
Zig
usingnamespace @import("other.zig");
|
|
|
|
pub var saw_bar_function = false;
|
|
pub fn bar_function() void {
|
|
if (@This().foo_function()) {
|
|
saw_bar_function = true;
|
|
}
|
|
}
|