Rob Dixon wrote: > If you want to use push, pop, shift, unshift etc then do > > push @$MyArray[$i], $val
Sorry:
push @{$MyArray[$i]}, $val
>
> which (if the array was previously empty) will set $MyArray[$i][0] to
> $val.
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
