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