in reply to Re^2: What is the difference between $array[1] and @array[1]?
in thread What is the difference between $array[1] and @array[1]?

No, the first one will put the first element of @another_array into @array.

> perl -e '@a=(5,6,7); @array[1] = @a; print @array;' 5