Help for this page

Select Code to Download


  1. or download this
    %hoh = {
        # ...
    };
    
  2. or download this
    $ perl -MData::Dumper -e'%hoh = { foo => 1 }; print Dumper \%hoh'
    $VAR1 = {
              'HASH(0x812f180)' => undef
            };
    
  3. or download this
    $ perl -we'%hoh = { foo => 1 };'
    Reference found where even-sized list expected at -e line 1.
    
  4. or download this
    %hoh = (
        # ...
    );