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

11 lines
159 B
Plaintext

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