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

7 lines
No EOL
66 B
Text

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