Hello list,

Perl::Tidy is very excellent for making source look nice.
I was wondering if anyone knew of anything that is the same type of idea but it optomizes your Perl code to run a bit faster:
for instance:
$newvariable = "$howdy";
should be:
$newvariable = $howdy;
and
$stuff = "hello";
shoudl be:
$stuff = 'hello';
etc


$str = CGI::header() . "hello" . $v;

woudl become
 $str = CGI::header(),"hello", $v;

that sort of thing...

TIA

Lee.M - JupiterHost.Net

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>




Reply via email to