8 lines
79 B
Plaintext
8 lines
79 B
Plaintext
main() {
|
|
x := f(2, 3)
|
|
syscall(60, x)
|
|
}
|
|
|
|
f(x, y) {
|
|
return (x + y) * (x + y)
|
|
} |