5 lines
78 B
Haskell
5 lines
78 B
Haskell
module Lib where
|
|
|
|
fib :: [ Integer ]
|
|
fib = 1 : 2 : zipWith (+) fib (tail fib)
|