Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -l
    use strict;
    ...
    
    print "@arr";
    print "@sorted";
    
  2. or download this
    my @sorted = sort { $hash{$a} cmp $hash{$b} } @arr;