Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    no strict;
    %hash = ( a => 'x123' );
    $hash{a}{b} = 'data';
    print Dumper \%hash;
    
  2. or download this
    $VAR1 = {
              'a' => 'x123'
            };
    
  3. or download this
    print Dumper \%hash, \%x123;
    
  4. or download this
    Name "main::x123" used only once: possible typo at Z:\test.pl line 6.
    $VAR1 = {
    ...
    $VAR2 = {
              'b' => 'data'
            };