codeb ifs and whiles
[testub10.git] / codeb / intelli_13.0
1 method m()
2         var x := 10;
3         while 0 < x do
4                 x := x-1;
5         end;
6         return x;
7 end;
8