17 lines
132 B
Plaintext

main() {
x := f(1) + f(2) + f(3)
if x != 9 {
exit(42)
}
exit(0)
}
exit(code) {
syscall(60, code)
}
f(x) {
return x + 1
}