Skip to content

Instantly share code, notes, and snippets.

@timsgardner
Created December 6, 2014 15:56
Show Gist options
  • Save timsgardner/fc8ec643a66a2cbb3f4e to your computer and use it in GitHub Desktop.
Save timsgardner/fc8ec643a66a2cbb3f4e to your computer and use it in GitHub Desktop.
simple benchmark
(time
(loop [i 1000000]
(if (> i 0)
(recur (dec i))
i)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment