Help for this page

Select Code to Download


  1. or download this
      $debug && print "Some debugging output.\n";
    
  2. or download this
      print "Some debugging output.\n" if $debug;
    
  3. or download this
       if ($debug) {
          print "Some debugging output.\n";
       }