Files
eulerfunt/haskell/Lib.hs
2022-10-26 14:06:53 +05:30

5 lines
78 B
Haskell

module Lib where
fib :: [ Integer ]
fib = 1 : 2 : zipWith (+) fib (tail fib)