Roy Johnson has asked for the wisdom of the Perl Monks concerning the following question:
A fellow who is learning Perl came to me with the discovery that using commas instead of semicolons in a for loop causes it to loop three times. That made sense to me: it was treating it as a foreach loop with three items in the list.
The PerlMonk tr/// Advocate
What didn't make sense to me was the output. The final value in the list is the only value for the variable in the loop (as if the comma were being treated as an op for a scalar expression, but it still does three iterations). This is more easily explained with code:
output is:my $i; for ($i=3, $i=2, $i=1) { print "$_ and $i\n"; }
Please impart some Perl Wisdom to explain this mystery.1 and 1 1 and 1 1 and 1
The PerlMonk tr/// Advocate
Back to
Seekers of Perl Wisdom