Remove testing cruft

This commit is contained in:
Scott Richmond 2022-04-03 20:11:23 -04:00
parent 69118ed4e0
commit 12487b390e

View File

@ -292,16 +292,6 @@
")
(defn fib [n]
(case n
0 1
1 1
(+ (fib (- n 1)) (fib (- n 2)))))
(fib 35)