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
Run perl script as a daemon - Nov 14, 2014
Installing a Perl Module - Jan 13, 2015
Perl links to read - Jul 09, 2013
Using Perl and Erlang - Jan 19, 2015
"How to be a great software developer" - Apr 22, 2014
more >>