17 lines
131 B
Plaintext
Raw Normal View History

2023-10-17 15:10:35 +02:00
main() {
2024-07-07 12:30:57 +02:00
x := f(1) + f(2) + f(3)
2024-07-08 13:38:44 +02:00
if x != 9 {
exit(1)
2024-07-07 12:30:57 +02:00
}
exit(0)
2024-07-04 12:32:56 +02:00
}
exit(code) {
syscall(60, code)
2024-06-27 10:12:41 +02:00
}
2024-07-03 11:39:24 +02:00
f(x) {
return x + 1
2024-06-14 10:36:01 +02:00
}