Skip to content

Instantly share code, notes, and snippets.

@oranenj
Created December 15, 2009 22:06
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 oranenj/257351 to your computer and use it in GitHub Desktop.
Save oranenj/257351 to your computer and use it in GitHub Desktop.
user> (loop [i 0 m (transient {})]
(if (> i 10)
(persistent! m)
(recur (inc i) (assoc! m i i))))
{0 0, 1 1, 2 2, 3 3, 4 4, 5 5, 6 6, 7 7, 8 8, 9 9, 10 10}
user>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment