Help for this page

Select Code to Download


  1. or download this
    sub assign_new_href {
        my $href = shift;
        $href = { new_key => 4 } ;
    }
    
  2. or download this
    sub assign_new_href {
        my $href = shift;
        %$href = ( new_key => 4 );
    }