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