RosettaCodeData/Task/Loops-Continue/Perl-6/loops-continue-1.pl6

9 lines
101 B
Raku
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
for 1 .. 10 {
.print;
if $_ %% 5 {
print "\n";
next;
}
print ', ';
}