- or download this
@{ $$href{dn}{mail} };
# or
@{ $href->{dn}{mail} };
# or
@{ $href->{dn}->{mail} };
- or download this
$$href{$dn}{mail}[0];
# or
...
# or
$href->{dn}->{mail}->[0]; ## yawn! :)
# or ...
- or download this
## Make the localised glob *mail
## act as an alias to the nested array
...
}
## *mail reverts to it's old value here.