Help for this page

Select Code to Download


  1. or download this
    $foo = $hash{5.00};
    
  2. or download this
    $foo = $hash{5};
    
  3. or download this
    $foo = $hash{'5.00'};
    
  4. or download this
    $hash{5} = "foo";
    $hash{'5.00'} = "bar";
    print $hash{5}, $hash{5.00}, $hash{'5.00'};