17 lines
155 B
Plaintext
Raw Normal View History

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