Do the various 'Syntactic Sugar' options slow down perl programs?
ex:
I am just wondering because I find the qq makes complicated html print statements easier to debug....you know trying to find that stray "
Thanks.
Later
ex:
Code:
#$r is an apache request object
$r->print("<form name=\"thisform\"");
#vs.
$r->print(qq@
<form name="thisform"
@);
I am just wondering because I find the qq makes complicated html print statements easier to debug....you know trying to find that stray "
Thanks.
Later