Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    use Tie::IxHash;
    ...
                             }
                 );
    print Dumper(\%hash_ref);
    
  2. or download this
    use Data::Dumper;
    use Tie::IxHash;
    ...
    $hnr{'MAIN'}{'AP'} = { %list2 };
    
    print Dumper(\%hnr);
    
  3. or download this
    tie my %myhash, 'Tie::IxHash';
    
    ...
                12, undef,  
                 7, undef);
    print Dumper(\%myhash);