Loop through a Perl array
@myNames = ('Larry', 'Curly', 'Moe');
 foreach (@myNames) {
 	print $_;
 } 
#programming - #perl - #howto
From JR's : articles
17 words - 113 chars 
created on  
 - #
 source
 - versions
 
Related articles
Perl links to read  - Jul 09, 2013
 
Run perl script as a daemon  - Nov 14, 2014
 
Installing a Perl Module  - Jan 13, 2015
 
Perl programming tools to test  - Nov 14, 2014
 
Quotes in Perl  - Oct 12, 2013
 
more >>