17 lines
131 B
Plaintext
17 lines
131 B
Plaintext
main() {
|
|
x := f(1) + f(2) + f(3)
|
|
|
|
if x != 9 {
|
|
exit(1)
|
|
}
|
|
|
|
exit(0)
|
|
}
|
|
|
|
exit(code) {
|
|
syscall(60, code)
|
|
}
|
|
|
|
f(x) {
|
|
return x + 1
|
|
} |