Help for this page

Select Code to Download


  1. or download this
    foreach my $recid ( reverse sort %SeqOrders ) ...
    
  2. or download this
    $ perl -MData::Dump -e '%x = qw{a 1 b 2 c 3}; dd \%x; dd { reverse sor
    +t %x }'
    { a => 1, b => 2, c => 3 }
    { 2 => 1, a => 3, c => "b" }
    
  3. or download this
    my %rev_seq = reverse %SeqOrders;
    for my $recid (sort keys %rev_seq) {
        ...
    }