RosettaCodeData/Task/Nested-function/Raku/nested-function.raku

10 lines
188 B
Raku
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
sub make-List ($separator = ') '){
my $count = 1;
sub make-Item ($item) { "{$count++}$separator$item" }
join "\n", <first second third>».&make-Item;
}
put make-List('. ');