summaryrefslogtreecommitdiff
path: root/tests/vm/printi_if_greater.elna
blob: 57d5ba5f61109b9558cecd334ee42360a2923ab9 (plain)
1
2
3
4
5
6
proc main() {
  if ((1 + 1) > 2)
    printi(3);
  else
    printi(5);
}