Help for this page

Select Code to Download


  1. or download this
    my %hash = ( 'A1' => { 
                                   'B1' => 'Value',
                                   'B2' => { 
    ...
                                           }
                                  },
                         )
    
  2. or download this
    if (exists $hash{'A1'}{'B2'}{'C1'}) {
        push ( @{ $hash{'A1'}{'B2'}{'C1'}}, arrayitem4;
    } else {
        $hash{'A1'}{'B2'} = {'C1' => [arrayitem1]};
    }