Skip to content

Commit

Permalink
Commenting out the "comment" because it sort of makes a circular depe…
Browse files Browse the repository at this point in the history
…ndency
  • Loading branch information
adereth committed Dec 13, 2013
1 parent 1ff9fbb commit f5be697
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions src/spyscope/core.clj
Expand Up @@ -105,11 +105,10 @@
(with-meta form)
trace)))

(comment
(defn fib
"Fibonacci number generator--an experimental tracing candidate"
([x]
(fib (dec x) x))
([n x]
(if (zero? n) x (fib #spy/t ^{:form true} (dec n)
#spy/t ^{:form true} (* n x))))))
; (defn fib
; "Fibonacci number generator--an experimental tracing candidate"
; ([x]
; (fib (dec x) x))
; ([n x]
; (if (zero? n) x (fib #spy/t ^{:form true} (dec n)
; #spy/t ^{:form true} (* n x)))))

0 comments on commit f5be697

Please sign in to comment.