11 lines
87 B
Plaintext

main() {
exit(f(f(f(1))))
}
exit(code) {
syscall(60, code)
}
f(x) {
return x + 1
}