in reply to
Re^2: Difference between for and foreach
in thread
Difference between for and foreach
That comment is about the C-style for loops ( e.g.
for ( $i = 0; $i < $j; $i++)
versus iterating directly over a list ( e.g.
for my $item (@array)
).
Comment on
Re^3: Difference between for and foreach
Select
or
Download
Code
Replies are listed 'Best First'.
Re^4: Difference between for and foreach
by
skaurus
(Novice)
on Nov 11, 2013 at 14:07 UTC
Thanks! I expected a notification email, didn't received one and because of this I saw your answer just now.
[reply]
In Section
Seekers of Perl Wisdom