2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 14:28:05 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/haskell/fibonacci-stream.hs

2 lines
61 B
Haskell
Raw Normal View History

fibs :: [Integer]
fibs = 0 : 1 : zipWith (+) fibs (tail fibs)