RosettaCodeData/Task/Loops-Continue/Perl-6/loops-continue-1.pl6
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

8 lines
101 B
Raku

for 1 .. 10 {
.print;
if $_ %% 5 {
print "\n";
next;
}
print ', ';
}