groups

Link to this snippet:


Download to Code Collector

language: Perl
licence: Other

Foreach loop

options: send to code collectorview all nepahwin's snippets
@myNames = ('Larry', 'Curly', 'Moe');
foreach (@myNames) {
print $_;
}