Help for this page

Select Code to Download


  1. or download this
    foreach $key (sort(keys(%hash)))
    {
        print "Key = $key, value= $hash{$key}\n";
    }
    
  2. or download this
    foreach $key (sort(keys(%hash)))
    {
        print join(/ /,keys(%{$hash{$key}}),"\n";
    }