in reply to Re: Re: Sad newbie question about Data::Dumper and array references..
in thread Sad newbie question about Data::Dumper and array references..

You want
${$data}[0]
as the exact equivalent of
$data->[0]
Otherwise you've just committed the famous @foo[3] sin, which much literature speaks of.

-- Randal L. Schwartz, Perl hacker