#!/usr/bin/perl my %hash = {'hello' => 'world', 'says' => 'just another perl hacker'}; my $hashref = \%hash; print "$hashref->{'says'} in the $hash{'world'}\n" ;