RosettaCodeData/Task/Flow-control-structures/Pop11/flow-control-structures-3.pop11
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

16 lines
198 B
Text

state1:
DO_SOMETHING();
if condition1 then
goto state1;
elseif condition2 then
goto state2;
....
else
goto stateN;
endif;
state2:
....
...
...
stateN:
....