Help for this page

Select Code to Download


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