Skip to content

Instantly share code, notes, and snippets.

@kindlychung
Created May 12, 2015 15:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kindlychung/c0568e86ffe6f6566077 to your computer and use it in GitHub Desktop.
Save kindlychung/c0568e86ffe6f6566077 to your computer and use it in GitHub Desktop.
(time
(dorun 1000000
(repeatedly #(let [a (long-array (range 10))]
(aget a 7)))))
(time
(dorun 1000000
(repeatedly #(let [^longs a (long-array (range 10))]
(aget a 7)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment