7 lines
57 B
Plaintext
7 lines
57 B
Plaintext
|
main() {
|
||
|
syscall(60, f(1))
|
||
|
}
|
||
|
|
||
|
f(x) {
|
||
|
return x + 1 + x
|
||
|
}
|