>($foo = $bar) =~ s/x/y/; will never make much sense to me.
What about these, which are much the same thing in that they all
use the lvaluability of assignment:
chomp($line = <STDIN>);
($foo = $bar) += 10;
($foo += 3) *= 2;
func($diddle_me = $protect_me);
$n = select($rout=$rin, $wout=$win, $eout=$ein, 2.5);
--tom
- Overlapping RFCs 135 138 164 Mark-Jason Dominus
- Re: Overlapping RFCs 135 138 164 Stephen P. Potter
- Re: Overlapping RFCs 135 138 164 Nathan Wiger
- Re: Overlapping RFCs 135 138 164 Steve Fink
- Re: Overlapping RFCs 135 138 164 Tom Christiansen
- Re: Overlapping RFCs 135 138 164 Tom Christiansen
- Re: Overlapping RFCs 135 138 164 Uri Guttman
- Re: Overlapping RFCs 135 138 164 Tom Christiansen
- copying and s/// (was Re: Ove... Uri Guttman
- Re: copying and s/// (was... Nathan Wiger
- Re: copying and s/// (was... Brad Hughes
- Re: copying and s/// (was... Mike Lambert
- Re: copying and s/// (was... Nathan Wiger
- Re: copying and s/// (was... Tom Christiansen
- Re: copying and s/// (was... Tom Christiansen
