in reply to Re: How Perl Optimize your code & some code TIPS ;-P
in thread How Perl Optimize your code & some code TIPS ;-P
while ($h = each %$rf_h) { ... }
Update: oh wow, ya learn something new every day.while (($h) = each %$rf_h) { ... }
Makeshifts last the longest.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re^2: How Perl Optimize your code & some code TIPS ;-P
by ihb (Deacon) on Jan 31, 2003 at 13:44 UTC |