RosettaCodeData/Task/Flow-control-structures/Pop11/flow-control-structures-3.pop11

17 lines
198 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
state1:
DO_SOMETHING();
if condition1 then
goto state1;
elseif condition2 then
goto state2;
....
else
goto stateN;
endif;
state2:
....
...
...
stateN:
....