- or download this
push @Names, $names{$_}{realname}
foreach keys %names;
- or download this
push @Names, $_->{realname}
foreach values %names;
- or download this
my @Names = map { $_->{realname} } values %names;
- or download this
%hash # The entire hash is a hash.
$hash{key} # An element of the hash is a scalar.