Help for this page

Select Code to Download


  1. or download this
    %foo = (
      11 =>{ 4 => 'Four' },  
    ...
                   keys %$ref_HoH ) {
    ...
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
    for my $k ( sort { $a <=> $b } keys %$ref_HoH ) {
       print "$k\n";
    }
    
  3. or download this
    hf@flux[30] perl /tmp/testit
    2
    11
    33