Help for this page

Select Code to Download


  1. or download this
        $hash{key}= 'value';
    
  2. or download this
        no autovivify;
        my %hash;
    ...
        # Examples of autovivification:
        $hash{key4}{key3}= 'value'; # should fail!
        $hash{key5}[0]= 1;          # should fail!