Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
cases
non_leaf_functions.zig
pretty
plain
permalink
blame
history
•
12 lines
•
93 B
1
pub fn main() void {
2
foo();
3
}
4
5
fn foo() void {
6
bar();
7
}
8
9
fn bar() void {}
10
11
// run
12
//