6 lines
120 B
Perl
6 lines
120 B
Perl
|
#!/usr/local/bin/perl
|
||
|
|
||
|
@words = ("Here", "is", "a", "list.");
|
||
|
foreach $word (@words) {
|
||
|
print ("$word\n");
|
||
|
}
|