Created
June 16, 2010 03:11
-
-
Save richhickey/440102 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;new num branch results | |
(defn fib [n] | |
(if (>= 1 n) | |
1 | |
(+ (fib (dec n)) (fib (- n 2))))) | |
(time (fib 38)) | |
"Elapsed time: 3716.828 msecs" | |
;note, no change to body | |
(defn ^:static fib ^long [^long n] | |
(if (>= 1 n) | |
1 | |
(+ (fib (dec n)) (fib (- n 2))))) | |
(time (fib 38)) | |
"Elapsed time: 380.448 msecs" |
Greater than or equal? Shouldn't it be less than or equal?
Durrr, nevermind, you inverted the condition. Ignore me.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Could you explain the syntax is that new?