q/tests/programs/reuse.q
2025-02-17 14:31:47 +01:00

7 lines
67 B
Plaintext

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