Help for this page

Select Code to Download


  1. or download this
    @list_order = sort { $stuff_list[$a] cmp $stuff_list[$b] } 0 .. $#stuf
    +f_list;
    
  2. or download this
    for my $i ( 0 .. $#list_order ) {
        print "$stuff_list[$list_order[$i]]\n";
    }
    
  3. or download this
    print join( "\n", @stuff_list[@list_order] ), "\n";