Help for this page

Select Code to Download


  1. or download this
    sub print_hash {
        my $href = shift;
        print "$_\t=> $href->{$_}\n" for keys %{$href};
    }
    
  2. or download this
    sub print_hash {
        my $href = shift;
    ...
            print "$key\t=>$val\n";
        }
    }