Help for this page

Select Code to Download


  1. or download this
      if ( $DEBUG ) {
          print "debug info\n";
      }
    
  2. or download this
      print "debug info\n" if $DEBUG;
  3. or download this
      unlink $file or die "$file: $!" unless $DEBUG;