12 lines
82 B
Plaintext
12 lines
82 B
Plaintext
|
main() {
|
||
|
syscall(60, f(1))
|
||
|
}
|
||
|
|
||
|
f(x) {
|
||
|
y := g()
|
||
|
return x + y
|
||
|
}
|
||
|
|
||
|
g() {
|
||
|
return 2
|
||
|
}
|