elna/tests/vm/printi_if_greater.elna

7 lines
72 B
Plaintext

proc main() {
if ((1 + 1) > 2)
printi(3);
else
printi(5);
}