aboutsummaryrefslogtreecommitdiffstats
path: root/stdlib/common.milch
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/common.milch')
-rw-r--r--stdlib/common.milch8
1 files changed, 0 insertions, 8 deletions
diff --git a/stdlib/common.milch b/stdlib/common.milch
index 4d5b132..b04cf37 100644
--- a/stdlib/common.milch
+++ b/stdlib/common.milch
@@ -46,14 +46,6 @@
false
(filter pred (tail lst))))))
-(let! fibo (\[n]
- (let! lazy fibo-1 (fibo (- n 1)))
- (let! lazy fibo-2 (fibo (- n 2)))
- (match n
- 0 0
- 1 1
- _ (+ fibo-1 fibo-2))))
-
(let! reverse_ (\[v a]
(let! lazy x (head v))
(let! lazy xs (tail v))