Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl    
    
    ...
    my %hash = ( a=>{} );
    if (  !exists $hash{'a'}{'b'}{'c'} ){};
    print Dumper \%hash;
    
  2. or download this
    $VAR1 = {
              'a' => {}
            };