Skip to content

Instantly share code, notes, and snippets.

@bryanwoods
Created December 2, 2015 20:24
Show Gist options
  • Select an option

  • Save bryanwoods/0002a69b00e1f5115241 to your computer and use it in GitHub Desktop.

Select an option

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