I am attempting to solve the second problem on Project Euler using Haskell. The problem is fairly straight forward - sum the even fibonacci numbers less then 4000000. (Me being OCD, I'm implimenting a slightly modified function - one which allows an arbitraty limit).
My initial code was:
euler2 limit (num1:num2) |(num1>limit) = 0
|((num2>limit) && ((mod num1 2) == 0)) = num1
|(num2>limit) = 0
|(((mod num1 2) == 0) && ((mod num2 2) == 0)) = num1+num2+(euler2 limit [num1+num2,num1+num2+num2])
|((mod num1 2) == 0) = num1+(euler2 limit [num1+num2,num1+num2+num2])
|((mod num2 2) == 0) = num2+(euler2 limit [num1+num2,num1+num2+num2])
|otherwise = euler2 limit [num1+num2,num1+num2+num2]
euler2 limit [] = euler2 limit [1,2]
Which produced the following error:
Occurs check: cannot construct the infinite type: a0 = [a0]
In the second argument of `(>)', namely `limit'
In the first argument of `(&&)', namely `(num2 > limit)'
In the expression: ((num2 > limit) && ((mod num1 2) == 0))
Now through some trial and error, I have realized that it is attempting to typecast num2 as a list, and this small change:
euler2 limit (num1:num2:[]) |(num1>limit) = 0
Fixes the problem. My question is why? What is going on and why was it refusing to cast num1 and num2 as Ints?

euler2 :: Integer [Integer](or something like that...). Fixing the types can lead to simpler error messages. – missingno Feb 8 at 19:54num1is anInt, your problem is thatnum2is not; it is a list ofInts. – sabauma Feb 8 at 19:56[num1, num2]– dave4420 Feb 8 at 20:00(:[])be a hack? Branching on your data structure is what pattern matching is for. As to your last question: Haskell will never implicitly coerce types. If you wanted, you could extract the first element ofnum2usinghead, but you have no guarantee that callingheadis safe in that situation. – sabauma Feb 8 at 20:14