2 lines
41 B
Haskell
2 lines
41 B
Haskell
|
|
fib = 0 : 1 : (zipWith (+) <*> tail) fib
|
|
|
fib = 0 : 1 : (zipWith (+) <*> tail) fib
|