in reply to Re: assignment to scalar changing array content
in thread assignment to scalar changing array content

This syntax can also be applied to the second line.
$ralias = ${$reference}[0]; # is the same as ... $ralias = $reference->[0];
I find the second style much easier to read.
---
my name's not Keith, and I'm not reasonable.