12 lines
81 B
Plaintext

main() {
assert f(1) == 3
}
f(x) {
y := g()
return x + y
}
g() {
return 2
}