in reply to Macro in perl code?
This can make things faster, but see:
in this case, like in many others, by evaluating or not the args of print, means the value of $x is or isn't changed.sub verb { 1 } my $x = 1; print "debug ".$x++."\n" if verb;
Oha
|
|---|