8 lines
101 B
Raku
8 lines
101 B
Raku
for 1 .. 10 {
|
|
.print;
|
|
if $_ %% 5 {
|
|
print "\n";
|
|
next;
|
|
}
|
|
print ', ';
|
|
}
|