Help for this page

Select Code to Download


  1. or download this
     perl -e '$empty = (); print ("hi there\n") if \!$empty;
    __END__
    hi there
    
  2. or download this
    perl -e '$empty = (); print ("hi there\n") if \!defined($empty);'
    __END__
    hi there