Help for this page

Select Code to Download


  1. or download this
      return $_[0] ? undef : 'hello';
    # or:
      return 'hello' unless $_[0];
      return;