4 lines
74 B
Perl
4 lines
74 B
Perl
|
|
foreach $l ( "apples", "bananas", "cherries" ) {
|
||
|
|
print "I like $l\n";
|
||
|
|
}
|