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