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