Dr.Ruud wrote:
"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 PRO
"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];
--