Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    } @things_to_sort;
    
    print Dumper \@sorted;
    
  2. or download this
    @sorted = sort {
           $a->{title} eq "THIS BOOK FIRST" && -1
    ...
        or $a->{author}  cmp $b->{author} 
        or $a->{title}   cmp $b->{title}
    } @things_to_sort;