Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    $list[0] = 0;
    $list[2] = 2;
    @list = sort {$a <=> $b} @list;
    
  2. or download this
    use strict;
    use warnings;
    ...
    $list[0] = [0];
    $list[2] = [2];
    @list = sort {$$a[0] <=> $$b[0]} @list;