Help for this page

Select Code to Download


  1. or download this
    for my $key1 (sort keys %myhash) {
        print $key1, "\n";
    ...
            print "\t", $key2, " => ", $myhash{$key1}{$key2}, "\n";
        }
    }
    
  2. or download this
    use Data::Dumper;
    print Dumper \%myhash;