1 2 3 4 5
fib 0 = 0 fib 1 = 1 fib n = ((n - 2) + (n - 1)) map (fib) [0..20]
1 2
Error occurred ERROR line 5 - Syntax error in input (unexpected `..')