in reply to RE: RE: Re: Dreaming of Post Interpolation (*)
in thread Dreaming of Post Interpolation
For $foo = $bar + 1, the rhs is evaluated first and the result is stored in $foo. What you want is to store the rhs expression in $foo (ie, more or less a sub ref).
And, as swiftone says, every variable that has a cascaded variable on the rhs of its assignment is forced to become a cascade variable itself, with potentially dire results. Perhaps meltdown would be a better name :)
|
---|
Replies are listed 'Best First'. | |
---|---|
RE: RE: RE: RE: Re: Dreaming of Post Interpolation
by BBQ (Curate) on May 31, 2000 at 02:59 UTC | |
by Adam (Vicar) on May 31, 2000 at 03:15 UTC |