Help for this page

Select Code to Download


  1. or download this
    sub short_sorts {
      my ($a,$b,$type) = @_;
    ...
        die "A sort type was not selected.";
      }
    }
    
  2. or download this
    (sort {
      short_sorts($master_list{$a}{members},$master_list{$b}{members},'nd'
    +) ||
      short_sorts($a,$b,'ia')
    } keys %master_list)