in reply to Re: working with hashes of arraysin thread working with hashes of arrays
my %hash = (1 => 'one', 2 => 'two', 9 => 'nine, ); my $hash_ref = \%hash; my @array = values %hash; print $hash{1}; print $hash_ref->{2}; print $array[3]; [download]