Help for this page

Select Code to Download


  1. or download this
    %myHash = ( key1 => 'common Value1',
                key2 => 'common Value2'
    )
         unless keys %myHash;
    
  2. or download this
    $myHash{key1} ||= 'common Value1';
    $myHash{key2} ||= 'common Value2';