Help for this page

Select Code to Download


  1. or download this
    # This line would discard the reference to %Fruits, and create a *new*
    # hash with the specified values
    # $Ref_to_Hash = { "Pears", 5, "Peaches", 7 };
    
  2. or download this
    %$Ref_to_Hash = ( "Pears", 5, "Peaches", 7 );