Help for this page

Select Code to Download


  1. or download this
    %hash1 = ( a, b, c, d, e, f );
    %hash2 = ( a, J, e, K );
    ...
    print Dumper ( \%hash1 );
    #print Dumper ( \%hash2 );
    
  2. or download this
    $VAR1 = {
              'e' => 'f',
    ...
              'c' => 'd',
              'a' => 'J'
            };
    
  3. or download this
    %hash1 = ( %hash1, %hash2 );