2024-08-05 18:47:24 +02:00

12 lines
99 B
Plaintext

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