Help for this page

Select Code to Download


  1. or download this
    $some_variable = (defined $parm1) ? $parm1 : $default;
    
  2. or download this
    if (defined $parm1) {
        $some_variable = $parm1;
    ...
    else {
        $some_variable = $default;
    }