Help for this page

Select Code to Download


  1. or download this
    Use of uninitialized value in substitution (s///) at (eval 2) line 21
    
  2. or download this
       $hash{$var1}{'string'} = $var2;
    
  3. or download this
       { no warnings 'uninitialized'; 
         # and later:  no warnings;
         $hash{$var1}{'string'} = $var2;
       }