Skip to content

Instantly share code, notes, and snippets.

@bostonou
Created August 29, 2013 15:35
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 bostonou/6379655 to your computer and use it in GitHub Desktop.
Save bostonou/6379655 to your computer and use it in GitHub Desktop.
(defn mutate-chan
[c]
(<!! c))
(let [c (chan)]
(thread (>!! c 1))
(mutate-chan c)
(<!! c)) ; the 1 is now gone!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment