q/tests/programs/nested-calls.q

9 lines
No EOL
68 B
Text

import sys
main() {
sys.exit(f(f(f(1))))
}
f(x) {
return x + 1
}