elna/tests/vm/printi_if_greater_equal.elna

7 lines
79 B
Plaintext

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