- or download this
...
DEBUG and print 'debugging';
...
- or download this
C:\test>perl -le"use constant DEBUG=>0; print 'hi'; DEBUG and print 'd
+ebugging'; print 'bye'"
hi
...
'???';
print 'bye';
-e syntax OK
- or download this
#! perl -slw
use constant DEBUG => $DEBUG;
...
print 'debugging';
print 'bye';