Help for this page

Select Code to Download


  1. or download this
    %hash1 = (key1   => "value1");
    %hash2 = (value1 => "Gotcha");
    print $hash2{ $hash1{key1} }, "\n"; # Not $key1!
    
  2. or download this
    Gotcha