mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 15:42:49 +00:00
15 lines
136 B
Zig
15 lines
136 B
Zig
|
pub fn main() void {
|
||
|
bar();
|
||
|
foo();
|
||
|
return;
|
||
|
}
|
||
|
fn foo() void {
|
||
|
bar();
|
||
|
bar();
|
||
|
bar();
|
||
|
}
|
||
|
fn bar() void {}
|
||
|
|
||
|
// run
|
||
|
//
|