q/tests/programs/negation.q
2024-07-28 15:42:51 +02:00

7 lines
52 B
Plaintext

main() {
syscall(60, f(-32))
}
f(x) {
return -x
}