7 lines
57 B
Plaintext
Raw Normal View History

2024-07-09 08:39:29 +00:00
main() {
syscall(60, f(1))
}
f(x) {
return x + 1 + x
}