in reply to Re: How Perl Optimize your code & some code TIPS ;-P
in thread How Perl Optimize your code & some code TIPS ;-P
In fact, they're identical. Perl rewrites this:
into this:my $bar = "hello, $foo";
my $bar = "hello, " . $foo;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: How Perl Optimize your code & some code TIPS ;-P
by Aragorn (Curate) on Jan 25, 2003 at 14:35 UTC | |
by diotalevi (Canon) on Jan 26, 2003 at 16:49 UTC |