http://www.perlmonks.org?node_id=64751


in reply to Why does this core? or How am I being a bonehead

The line:
$bigArr[3] = $line;
Doesn't do anything if the variable $line is supposed to be an array like you stated.
Is this a typo, or is this causing your error?

Jeremy

Replies are listed 'Best First'.
Re: Re: Why does this core? or How am I being a bonehead
by SparkeyG (Curate) on Mar 15, 2001 at 23:06 UTC
    Sorry, typo
    $line is just a tmp var that holds one entry from @date. @data is an array that holds the return of ParseRecur.
    --SparkeyG
    Bonehead Perl Programmer
      Oh, yea. I see that now, I just got confused there.