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

4 lines
49 B
Perl
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
foreach my $i (@collection) {
print "$i\n";
}