Skip to content

Instantly share code, notes, and snippets.

@milkypostman
Created May 1, 2011 20:21
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 milkypostman/950827 to your computer and use it in GitHub Desktop.
Save milkypostman/950827 to your computer and use it in GitHub Desktop.
(defn lots2 [n]
(let [ndenom (int (/ n 10))]
(filter #(zero? (mod % ndenom)) (range n)))
)
(dorun (map println (lots2 2000000000)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment