Skip to content

Instantly share code, notes, and snippets.

Created October 16, 2011 14:13
Show Gist options
  • Save anonymous/1290912 to your computer and use it in GitHub Desktop.
Save anonymous/1290912 to your computer and use it in GitHub Desktop.
;; toff63's solution to Implement range
;; https://4clojure.com/problem/34
(fn [from to] (take (- to from) (iterate inc from)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment