Help for this page
my %hash = ( a => 1, ... ); my $href = \%hash;
my $thing = $hash{a};
my $thing = $href->{a};
my %hash = %{ $href };