At 12:00 AM +0100 12/20/04, [EMAIL PROTECTED] wrote:
Please
Lets have two scalars variables in Perl and some operation under
them like an adding.
x = a + b
I would like know, witch auxiliary variables are creating
on the in-line code like a Parrot

somethink like T = a + b
               x = T     ???

For simple expressions there's no need for temps. "x = a + b" translates to "add x, a, b". If you have more complex expressions and need temps, then generally the compiler will choose the correct temp type, since it's normally language dependent. (Though Parrot's Undef is generally clever enough to be a good generic destination, as it morphs to most destination types on assign)
--
Dan


--------------------------------------it's like this-------------------
Dan Sugalski                          even samurai
[EMAIL PROTECTED]                         have teddy bears and even
                                      teddy bears get drunk

Reply via email to