Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    foreach (sort keys %by_priority) {
      print $by_priority{$_}, "\n";
    }
    
  2. or download this
    $ ./foo.pl
    PR3
    PR1
    PR4
    PR2