17 lines
135 B
Plaintext

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