* Quantum Mechanic ([EMAIL PROTECTED]) wrote:
> $foo = ($bar) = (9,8,7);
> 
>     RHS list
>     ($bar) array
>     $bar <- 7 (rest discarded)

No, no, no.

      $bar <- 9

It's the same as

  $foo = ($bar, undef, undef) = (9, 8, 7);

Now the funny thing is that the result from

  $foo = ($bar, undef, undef, undef) = (9, 8, 7);

is still the same :-)

jac

--
Jose Alves de Castro <[EMAIL PROTECTED]>
      http://jose-castro.org/

Reply via email to