2024-07-03 11:59:36 +02:00

7 lines
67 B
Plaintext

main() {
syscall(60, f(1) + f(2) + f(3))
}
f(x) {
return x + 1
}