Help for this page

Select Code to Download


  1. or download this
    print map $_,"\t",$hash{$_},"\n", sort keys %hash
    
  2. or download this
    foreach my $key (sort keys %hash){
        print $key,"\t",$hash{$key},"\n";
    }