2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 06:18:05 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/haskell/fibonacci-stream.hs
2014-03-20 13:42:52 +01:00

2 lines
No EOL
61 B
Haskell

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