f :: Integer -> Integer -> [Integer]
f i n = n : f (i+2) (n+i)
can someone explain to me what it does. i know it returns [0,1,4,9,16..] but i dont understand how and what n : f means
|
|
Check the behaviour of this function, by evaluating
i.e.
i.e. Thus, the function recursively builds up a list. Furthermore, it is infinitely tail-recursive (since it has no terminating condition) and will thus result in an infinitely long list. As for the initial line, |
||||
|
|
|
The code in your question does nothing because it contains a type error and a syntax error.
As you can see from the highlighting the last bit is a comment because
Here you have an opening Now that that that's done, here's what the fixed code does:
|
|||
|
|