in reply to Re: Parsing and scoring an Array of Arrays
in thread Parsing and scoring an Array of Arrays

ObRandomTip: To avoid making the mistake:
if ($x = 1) { # etc }
get into the habit of trying to put the variables on the right, not the left. It looks strange, but:
if (1 = $x) { # etc }
is likely to give you a much more informative error message. (This habit will serve you in good stead in quite a few languages, not just Perl.)