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

1 line
43 B
Haskell

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