Help for this page

Select Code to Download


  1. or download this
    for my $first_key (sort keys %hashiness) {
        print "$first_key =>\n";
        for my $second_key (sort keys %{$hashiness{$first_key}}) {
            print "\t$second_key\n";
        }
    }