Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    print Dumper {A=>'testA',B=>'testB'};
    
  2. or download this
    $VAR1 = {
              'A' => 'testA',
              'B' => 'testB'
            };
    
  3. or download this
    use Module::Load;
    load 'Data::Dumper';
    print Dumper {A=>'testA',B=>'testB'};