Implemented negative numbers

This commit is contained in:
Eduard Urbach 2024-07-27 17:48:03 +02:00
parent 093bd79c82
commit c2f6aa1a08
Signed by: eduard
GPG key ID: 49226B848C78F6C8
4 changed files with 28 additions and 1 deletions

View file

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