Help for this page

Select Code to Download


  1. or download this
    
    my @multiKey1 = ("a","b");
    ...
    
    my %testHash = ( \@multiKey1 => \@stuff1, \@multiKey2 => \@stuff2, \@m
    +ultiKey3 => \@stuff3);
    
  2. or download this
    @testHashKeys = keys %testHash;
    @testHashValues = values %testHash;
    ...
    $ref = $testHash{$testHashKeys[0]};
    @valueArray = @$ref;
    print "valueArray = @valueArray\n";
    
  3. or download this
    deref bla =  = ARRAY(0x10082add0)
    deref bla =  = ARRAY(0x10082afc8)
    ...
    deref bla = 6 7 = ARRAY(0x10082b040)
    deref bla = 4 5 = ARRAY(0x10082af50)
    valueArray = 1 2 3