Help for this page

Select Code to Download


  1. or download this
    foreach (sort { $a <=> $b } keys %hash) { push @c, \@{$hash{$_}}; }
    
  2. or download this
    @c = map { 
      \@{ $hash{$_} }
    } (sort { $a <=> $b } keys %hash);
    
  3. or download this
    push @c, map { 
      \@{ $hash{$_} }
    } (sort { $a <=> $b } keys %hash);