Help for this page
sub dump_hash { my ($hash) = @_; ... } dump_hash(\%hash);
sub dump_hash { my %hash = @_; ... } dump_hash(%hash);