Created
October 24, 2011 14:17
-
-
Save fehrenbach/1309134 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| user=> (do (defn foo [bar] (inc bar)) | |
| (prn (foo 1)) | |
| (time (defn foo [bar] (dec bar))) | |
| (foo 1)) | |
| 2 | |
| "Elapsed time: 0.189684 msecs" | |
| 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment