Files
c0db/test/testif.c0
Mitchell Plamann 9159cf1389 Added more tests, function calls work
Fixed a bunch of bugs in other opcodes, too
2015-03-28 19:14:10 -04:00

9 lines
76 B
Plaintext

int main() {
int x = 4;
if (x < 3)
x = 23;
else
x = 32;
return x;
}