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

11 lines
159 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
define outer();
define inner(n);
if n = 0 then
goto final;
endif;
inner(n - 1);
enddefine;
inner(5);
final:;
enddefine;