Help for this page

Select Code to Download


  1. or download this
      if ( ! ref $_[0] ) {
          return undef;
      } else {
          blah($_[0]);
      }
    
  2. or download this
      return undef unless ref $_[0];  # guard clause
    
      blah($_[0]);