6 lines
57 B
Perl
6 lines
57 B
Perl
|
|
sub print_all {
|
||
|
|
foreach (@_) {
|
||
|
|
print "$_\n";
|
||
|
|
}
|
||
|
|
}
|