in reply to Re: Re^6: Shifty Politics
in thread stoping and restarting a loop
The last one is, I hope you'll agree, outrageous, and is best reserved for those sitations where you'd explain it, but it's a "long story".my ($foo_a) = @_; # Simple my $foo_a = shift; # Comparable my ($foo_a) = (shift); # Odd my ($foo_a, $foo_b) = @_; # Typical my ($foo_a, $foo_b) = (shift, shift); # Odder my ($foo_a, $foo_b, $foo_c, $foo_d) = @_; my ($foo_a, $foo_b, $foo_c, $foo_d) = (shift, shift, shift, shift);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re^8: How about 450% greater performance
by BrowserUk (Patriarch) on Sep 10, 2002 at 23:00 UTC | |
by tadman (Prior) on Sep 11, 2002 at 01:36 UTC |