Help for this page

Select Code to Download


  1. or download this
    unless (defined $variable) { # if undefined
      $variable = 0; # set to standard value
    }
    
  2. or download this
    defined $variable or $variable = 0;
    
  3. or download this
    $variable = 0 unless defined $variable;