Implement addition and subtraction

This commit is contained in:
2024-09-29 19:50:55 +02:00
parent ed144309fa
commit c2c923276f
11 changed files with 131 additions and 89 deletions
+1
View File
@@ -0,0 +1 @@
-8
+1
View File
@@ -0,0 +1 @@
18
+3
View File
@@ -0,0 +1,3 @@
proc main() {
printi(5 - 13);
}
+3
View File
@@ -0,0 +1,3 @@
proc main() {
printi(5 + 13);
}