RosettaCodeData/Task/Flow-control-structures/Pop11/flow-control-structures-3.pop11
2023-07-01 13:44:08 -04: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:
....