Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    my %hash = (
    ...
            that => "two",
        );
    print Dumper(\%hash);
    
  2. or download this
    $VAR1 = {
              'that' => 'two',
              'this' => 'one'
            };
    
  3. or download this
    use Data::Dumper::Simple;
    my %hash = (
    ...
            that => "two",
        );
    print Dumper(%hash);
    
  4. or download this
    %hash = (
              'that' => 'two',
              'this' => 'one'
            );