Skip to content

Instantly share code, notes, and snippets.

View thanthese's full-sized avatar

Stephen Mann thanthese

View GitHub Profile
(def radius (if (empty? *command-line-args*)
12
(Integer/parseInt (first *command-line-args*))))
(defn stream [radius]
(let [full-range (range (- radius)
(inc radius))]
(for [x full-range
y full-range
z full-range]