Implemented negative numbers

This commit is contained in:
Eduard Urbach 2024-07-27 17:48:03 +02:00
parent 944bacf4e1
commit 6861ae9a90
No known key found for this signature in database
GPG key ID: C874F672B1AF20C0
4 changed files with 28 additions and 1 deletions

View file

@ -0,0 +1,5 @@
main() {
a := -32
b := 64
syscall(60, a + b)
}