Skip to content

Instantly share code, notes, and snippets.

@ScatteredRay
Created February 8, 2011 08:43
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 ScatteredRay/816118 to your computer and use it in GitHub Desktop.
Save ScatteredRay/816118 to your computer and use it in GitHub Desktop.
(def L '())
(defn add-item [i]
(def L (cons i L))
(add-item 1)
(add-item 2)
....
(do-stuff-with L)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment