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

View File

@ -0,0 +1,3 @@
proc main() {
printi(5 - 13);
}

3
tests/vm/print_sum.elna Normal file
View File

@ -0,0 +1,3 @@
proc main() {
printi(5 + 13);
}