elna/tests/vm/printi_if_less_equal.elna

7 lines
73 B
Plaintext

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