Help for this page

Select Code to Download


  1. or download this
    my @sorted = ikeysort { no warnings; int $_ } @data;
    
  2. or download this
    my @sorted = sort { no warnings; $a <=> $b } @data;
    
  3. or download this
    my @sorted;
    {
      no warnings;
      @sorted = sort { $a <=> $b } @data;
    }