mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
9 lines
176 B
Zig
9 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;
|
|
}
|
|
}
|