Help for this page

Select Code to Download


  1. or download this
    use 5.010;
    use strict;
    ...
    $VAR1 = {
              'NOTE2' => {}
            };
    
  2. or download this
    no autovivification qw(exists);
    if (!exists $rec{NOTE}{Nested})
    ...
      # but this still autovivifies $rec{NOTE}={};
      $rec{NOTE}{Nested2} = 'Foo';
    }