Help for this page

Select Code to Download


  1. or download this
    sub sort_and_print_hash_keys (\%) {
        my %hash = %{shift()};
    ...
        }
        print "\n";
    }
    
  2. or download this
    sub sort_and_print_hash_keys (\%) {
        my $hash = shift;
    ...
        }
        print "\n";
    }