Felix Geerinckx wrote:

> (...)
> Or, by using push, you take the next available position:
> 
>      push @array, 3;
> 
> is the same as
>      $array[2] = 2;
> (...)


Maybe a typo? 

        push @array, 3;

should be the same as 

        $array[2] = 3;


-- 
Zanardi2k2

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to