elna/tests/vm/printi_if_not.elna

7 lines
66 B
Plaintext

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