Help for this page

Select Code to Download


  1. or download this
    sub my_find_or_create
    {
    ...
        return defined $existing_result ? $existing_result :
                                          $new_result;
    }
    
  2. or download this
        return $existing_result // $new_result;