Help for this page

Select Code to Download


  1. or download this
        my $last_time = time;
        sort {
    ...
                };
                $a <=> $b
             } @list;
    
  2. or download this
    for (@items) {
        push @$_, deaccent( $_->[$selected+2] ) . $_->[$selected+2];
    };
    @items = sort { $a->[-1] cmp $b->[-1] } @items;