Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've tried to make an iterative/tail-recursive version of a function to compute the nth number of the Fibonacci sequence, but I'm getting parse error (possibly incorrect indentation). Why is this happening? The code I'm using:

fib n
    | n < 2 = n
    | otherwise = fibhelper 0 1 2 n
    where fibhelper a b curr num
          | curr == num = a + b
          | curr < num = fibhelper b (a+b) (curr+1) num

To be clear, I'm trying to understand the error - why it's happening, how it should be corrected - and not trying to implement fib efficiently (I understand the popular zipWith implementation here already, for instance).

Thanks!

share|improve this question
Thankfully, you received a good answer quickly. Please, if you could, be sure to say where the compiler had placed the error, not just what the error is. Once more, though, congrats on getting a fast, good answer. – BMeph Dec 15 '10 at 20:05

1 Answer

up vote 8 down vote accepted

The guard part has to be indented at least one character relative to the function name. The following thus works:

fib n
    | n < 2 = n
    | otherwise = fibhelper 0 1 2 n
    where fibhelper a b curr num
           | curr == num = a + b  -- moved one character to the left.
           | curr < num = fibhelper b (a+b) (curr+1) num
share|improve this answer
Aha! It had to be something like that, but I wasn't sure what. Thanks for your help! – Kiwi Dec 15 '10 at 16:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.