Help for this page

Select Code to Download


  1. or download this
    
    use Data::Dumper;    # to let us print out the results at the end
    ...
    # numbered items are values
    
    print Dumper(\%hash);
    
  2. or download this
    $VAR1 = {
              'yyy' => '54321',
              'xxx' => '12345',
              'zzz' => '13245'
            };