summaryrefslogtreecommitdiff
path: root/tests/vm/printi_if_less.elna
blob: 2cee6d8e7c27dfb8c5db49d2f65fd175c85aad97 (plain)
1
2
3
4
5
6
proc main() {
  if (1 < 2)
    printi(3);
  else
    printi(5);
}