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

Download this file

18 lines (14 with data), 173 Bytes

FUNCTION func:BOOL;
(*switch*)WHILE TRUE DO
CASE value OF
 'h':
 c:=c+1;
 c:=c-1;
 EXIT;
 
ELSE:
 c:=c-1;
 EXIT;

END_CASE

(*switch*)EXIT;
(*switch*)END_WHILE
END_FUNCTION