in reply to How to access contents of a reference to a hash.
#!/usr/bin/perl my %hash = {'hello' => 'world', 'says' => 'just another perl hacker'}; my $hashref = \%hash; print "$hashref->{'says'} in the $hash{'world'}\n" ; [download]