Help for this page

Select Code to Download


  1. or download this
      my @newest_first =
        map $_->[0],
        sort { $a->[1] <=> $b->[1] }
        map [$_, -M],
        <*>;
    
  2. or download this
      my @newest_first = sort { -M $a <=> -M $b } <*>;