in reply to Re^2: Alias of hash-values?in thread Alias of hash-values?
yep, seems to be the case!
$a=41; sub tst :lvalue { $a } $_++ for tst(); print tst(); # prints 42 [download]
Cheers Rolf