Added more tests, function calls work
Fixed a bunch of bugs in other opcodes, too
This commit is contained in:
8
test/testif.c0
Normal file
8
test/testif.c0
Normal file
@@ -0,0 +1,8 @@
|
||||
int main() {
|
||||
int x = 4;
|
||||
if (x < 3)
|
||||
x = 23;
|
||||
else
|
||||
x = 32;
|
||||
return x;
|
||||
}
|
||||
Reference in New Issue
Block a user