Implement if statements with equality

This commit is contained in:
2024-10-11 16:14:01 +02:00
parent 87f183baad
commit 0850f0a8d6
12 changed files with 168 additions and 93 deletions

4
tests/vm/printi_if.elna Normal file
View File

@ -0,0 +1,4 @@
proc main() {
if (1 = 1)
printi(3);
}