q/tests/programs/negation.q

7 lines
No EOL
52 B
Text

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