- or download this
my $arrayElement = $$arrayRef[0];
my $hashValue = $$hashRef{someKey};
- or download this
my $arrayElement = ${$arrayRef}[0];
my $hashValue = %{$hashRef}{key};
- or download this
my $arrayElement = $arrayRef->[0];
my $hashValue = $hashRef->{key};