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

10 lines
159 B
Text

define outer();
define inner(n);
if n = 0 then
goto final;
endif;
inner(n - 1);
enddefine;
inner(5);
final:;
enddefine;