Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    my $ref;
    $ref->{'hash'}->[0]->{'hash2'}->{'hash3'} = 'go go gadget autovivify!'
    +;
    print $ref->{'hash'}->{'hash2'}->{'hash3'};
    
  2. or download this
    use strict;
    
    my $ref;
    $ref->{'hash'}->[0]->{'hash2'} = 'go go gadget autovivify!';
    print $ref->{'hash'}->{'hash2'};