in reply to Why does this core? or How am I being a bonehead
$bigArr[0 .. 2] = $dataArr[$count][0 .. 2];
I'm not sure what context that gets evaulated in, but what you want is a list, I believe. If it's getting scalar by mistake, that could be trouble.
So I'd try either wrapping it in parens, or explicitly using a list:
$bigArr[0 .. 2] = $dataArr[$count][(0 .. 2)];
or
$bigArr[0 .. 2] = $dataArr[$count][0,1,2];
...and see if that helped.
Peace,
-McD
|
---|