summaryrefslogtreecommitdiff
path: root/tiger-compiler/tests/llvmtranslate/simple_while.tig
blob: 98313a0b3afe03e8ee0c5a8f26f56d9e112640bc (plain)
1
2
3
4
5
6
7
8
9
let
  var k := 0
  in
  while k < 5 do
    (
      k := k + 1;
      ()
    )
end