Help for this page
sub myfunc { my $href = shift; ... my %h = ( foo => 'bar' ); myfunc(\%h);
sub myfunc { my %hash = @_; ... my %h = ( foo => 'bar' ); myfunc(%hash); myfunc( foo => 'baz' );