RosettaCodeData/Task/Loops-Foreach/Perl/loops-foreach-1.pl

4 lines
49 B
Perl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
foreach my $i (@collection) {
print "$i\n";
}