Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper qw(Dumper);
    my $a = { b => {} };
    my $f = $a->{b}{c}{d}//undef;
    print Dumper $a
    
  2. or download this
    $VAR1 = {
              'b' => {
                       'c' => {}
                     }
            };