Skip to content

Instantly share code, notes, and snippets.

@bryanwoods
Created December 2, 2015 20:24
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 bryanwoods/0002a69b00e1f5115241 to your computer and use it in GitHub Desktop.
Save bryanwoods/0002a69b00e1f5115241 to your computer and use it in GitHub Desktop.
user=> (def foo (atom "foo"))
#'user/foo
user=> (swap! foo (fn [x] "bar"))
"bar"
user=> @foo
"bar"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment