7 lines
67 B
Plaintext
Raw Normal View History

2024-07-03 09:39:24 +00:00
main() {
syscall(60, f(1) + f(2) + f(3))
}
f(x) {
return x + 1
}