Implemented negation

This commit is contained in:
2024-07-28 15:42:51 +02:00
parent 6861ae9a90
commit bb74c0cf50
11 changed files with 136 additions and 21 deletions

View File

@ -0,0 +1,7 @@
main() {
syscall(60, f(-32))
}
f(x) {
return -x
}