Help for this page

Select Code to Download


  1. or download this
    my $ref = [
        [2, [qw(g a t a c a)]],
        [3, [qw(a t a c a g)]],
        [1, [qw(t a c a g a)]],
    ];
    
  2. or download this
    print map {join('',@{$_->[1]})."\n"} sort {$a->[0] <=> $b->[0]} @$ref;