12 lines
124 B
Plaintext

main() {
assert f(1, 2, 3) == 21
}
f(x, y, z) {
w := g(4, 5, 6)
return x + y + z + w
}
g(x, y, z) {
return x + y + z
}