Help for this page

Select Code to Download


  1. or download this
    if ($debug == "true") {
    &debugit;  # call the routine
    }
    
  2. or download this
    if ($debug == "true") {
    ** do all the debug code here and/or carry on **
    }
    
  3. or download this
    my $debug=1; # or $debug='' to disable
    # later:
    if ($debug) {
        debugIt();
    }