[fc78f7]: / test / stmt-for.test.expected  Maximize  Restore  History

Download this file

12 lines (8 with data), 91 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
FUNCTION func:BOOL;
i := 0;

WHILE i < 5;
 DO
x := x / 2;

i:=i+1;
END_WHILE

END_FUNCTION