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

Download this file

12 lines (8 with data), 103 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
FUNCTION func:BOOL;
IF x < 10
x := x / 2;

END_IF
WHILE x < 10 DO
x := x / 2;

END_WHILE

END_FUNCTION