Help for this page

Select Code to Download


  1. or download this
    $hash{entry} = "will get lost";
    $hash{entry} = "this will replace it";
    print $hash{entry};
    
  2. or download this
    die "Error: duplicate value for $key\n" if exists $hash{$key};
    $hash{$key} = $value;