a b/test/stmt-for.test.expected
1
FUNCTION func:BOOL;
2
i := 0;
3
4
WHILE i < 5;
5
 DO
6
x := x / 2;
7
8
(i:=i+1);
9
END_WHILE