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

11 lines
159 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
define outer();
define inner(n);
if n = 0 then
goto final;
endif;
inner(n - 1);
enddefine;
inner(5);
final:;
enddefine;