2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 22:38:04 +02:00

Fixpunktkombinatoren; Haskell-Beispiele

This commit is contained in:
Martin Thoma 2014-03-20 13:42:52 +01:00
parent e910561dfe
commit 0174aa0cc6
5 changed files with 129 additions and 6 deletions

View file

@ -0,0 +1,2 @@
fibs :: [Integer]
fibs = 0 : 1 : zipWith (+) fibs (tail fibs)