Help for this page

Select Code to Download


  1. or download this
      use strict ;
      use warnings ;
    ...
    
        ! defined $val || $val > 0;
      }
    
  2. or download this
      !defined($val) || ($val > 0) ;
    
  3. or download this
      try('undef') ;  # Argument "undef" isn't numeric in numeric gt (>) .
    +..