q/tests/programs/reuse.q
2024-07-28 18:47:13 +02:00

7 lines
No EOL
56 B
Text

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