Help for this page

Select Code to Download


  1. or download this
     @array = sort { $a->[0] cmp $b->[0] } @array; # ascending
    #@array = sort { $b->[0] cmp $a->[0] } @array; # descending
    
  2. or download this
    for my $elem ( @array ) {
        print "$elem->[0]\n";
    }
    
  3. or download this
    print "$_->[0]\n"
        for @array;