Help for this page

Select Code to Download


  1. or download this
    @list= sort {    @$a <=> @$b
                  || ... secondary criterion ...
                  || ... tertiary criterion ... 
                } @list;
    
  2. or download this
    $a->[-1] cmp $b->[-1] # untested
    
  3. or download this
    @list= sort {    @$a <=> @$b
                  || $a->[-1] cmp $b->[-1]
                } @list;