Help for this page

Select Code to Download


  1. or download this
    $hashref->{'globalkey'}->{'key2'}->{'key3'}->{'key4'}='ARRAY VALUE';
    $hashref->{'globalkey'}->{'key2'}->{'key3'}->{'key4'}->{'key5'}='ARRAY
    + VALUE';
    ...
                                         }
                             }
            };
    
  2. or download this
    use strict;
    use warnings;
    
    ...
    $hashref->{'globalkey'}->{'key2'}->{'key3'}->{'key4'}->{'key5'}->{'any
    + arbitrary number of keys'}='ARRAY VALUE';
    __END__
    Can't use string ("ARRAY VALUE") as a HASH ref while "strict refs" in 
    +use at - line 6.