in reply to Re: for loop localisation bug?
in thread for loop localisation bug?

My guess: could it be this way because otherwise it would interfere with the aliasing properties of foreach?

$ perl my ($i, $x, $y); for $i ($x, $y) { $i = 5; } print "=$x=$y=\n"; ^D =5=5=