q/tests/programs/reuse.q
2024-08-05 18:47:24 +02:00

7 lines
No EOL
67 B
Text

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