Help for this page

Select Code to Download


  1. or download this
    my %info = ( address => '123 Main', 
                  city => 'Anytown' );    
    $info{name} = "Bill";
    
  2. or download this
        
    %info .= ( name => 'Bill' ); 
    
    OR
    
    push ( %info, 'name' => 'Bill' );