show/hide this revision's text 2 fix wrong answer

When evens returns x + sum, this is not a number; it is a heap-allocated thunk.

You need to force it to be evaluatedare evaluating four million elements of fibs. Those numbers grow exponentially. I can never remember don't know how many bytes are required to do this but try

let next = x + sum in next `seq` next

instead represent the millionth Fibonacci number; just the one-thousandth Fibonacci number has 211 decimal digits, so that's going to take 22 32-bit words just to hold the digits, never mind whatever overhead gmp imposes. And these grow exponentially.

Exercise: calculuate the amount of x + summemory needed to hold four million Fibonacci numbers.

show/hide this revision's text 1

When evens returns x + sum, this is not a number; it is a heap-allocated thunk. You need to force it to be evaluated. I can never remember how to do this but try

let next = x + sum in next `seq` next

instead of x + sum.