$debug && print "Some debugging output.\n"; #### print "Some debugging output.\n" if $debug; #### if ($debug) { print "Some debugging output.\n"; }