Help for this page
my %hash = ( 'some' => 'things' ) ; callFunction( \%hash ) ;
sub callFunction { my $refhash = shift ; my %hash = %$refhash ; ... }