2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/haskell/fibonacci.hs
2014-02-01 13:46:33 +01:00

1 line
44 B
Haskell

fibs = 0 : 1 : zipWith (+) fibs (tail fibs)