"Chas Owens" schreef:

> [put an array @teams into the 0th element of $self]
> The proper syntax is
>     $self->[0]{teams} = [ @teams ];

That makes a copy. If you don't want that, for example because it could
contain millions of items, you can use

     $self->[0]{teams} = [EMAIL PROTECTED];

-- 
Affijn, Ruud

"Gewoon is een tijger."


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to