Help for this page

Select Code to Download


  1. or download this
    @KEYS = sort(@KEYS);
    
  2. or download this
    @KEYS = sort { $a <=> $b } @KEYS;
    
  3. or download this
    my @triee = map { substr($_, 8) }
                sort
    ...
    foreach my $triee (@triee) {
       print OUTFILE $triee;
    }