JupiterHost.Net wrote: > 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;
That's not an appropriate optimization. Perl objects can overload stringification. ... > $str = CGI::header() . "hello" . $v; > > woudl become > $str = CGI::header(),"hello", $v; That's not equivalent code at all. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>