8 lines
79 B
Plaintext
Raw Normal View History

2023-10-17 13:10:35 +00:00
main() {
2024-06-29 19:06:59 +00:00
x := f(2, 3)
syscall(60, x)
2024-06-27 08:12:41 +00:00
}
2024-06-29 19:06:59 +00:00
f(x, y) {
return (x + y) * (x + y)
2024-06-14 08:36:01 +00:00
}