Skip to content

Instantly share code, notes, and snippets.

@dawranliou
Last active April 26, 2018 00:33
Show Gist options
  • Save dawranliou/4ccf4f69446ce42db3321cb92c8f4343 to your computer and use it in GitHub Desktop.
Save dawranliou/4ccf4f69446ce42db3321cb92c8f4343 to your computer and use it in GitHub Desktop.
user=> range
#object[clojure.core$range xxxxxxxx]
;; Don't do this in your repl!
;; (range)
;; Do this instead
user=> (take 4 (range))
(0 1 2 3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment