in reply to Re: Parsing and scoring an Array of Arrays
in thread Parsing and scoring an Array of Arrays
get into the habit of trying to put the variables on the right, not the left. It looks strange, but:if ($x = 1) { # 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.)if (1 = $x) { # etc }
|
|---|