RosettaCodeData/Task/Loops-Continue/Perl/loops-continue-2.pl

10 lines
130 B
Perl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
foreach (1..10) {
print $_;
if ($_ % 5 == 0) {
print "\n";
goto MYLABEL;
}
print ', ';
MYLABEL:
}