aboutsummaryrefslogtreecommitdiff
path: root/example/example.imp
blob: b52d2daca6bc8dfe8c79b39948da69caa0993dd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
y := 0;

var x := 5 in

  while x < 10 and true do 
    x := (x + 1);
  end;

  y := x;
  
end;

z := 5;