2024-07-03 11:59:36 +02:00

8 lines
79 B
Plaintext

main() {
x := f(2, 3)
syscall(60, x)
}
f(x, y) {
return (x + y) * (x + y)
}