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

Download this file

11 lines (8 with data), 102 Bytes

FUNCTION func:BOOL;
IF x < 10
x := x / 2;

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

END_WHILE
END_FUNCTION