Skip to content

Instantly share code, notes, and snippets.

@jaycfields
Created November 13, 2012 02:02
Show Gist options
  • Save jaycfields/4063475 to your computer and use it in GitHub Desktop.
Save jaycfields/4063475 to your computer and use it in GitHub Desktop.
(given [x] x
(expect 0 (let [i (atom 0)]
@i))
(expect 1 (let [i (atom 0)]
(swap! i inc)
@i))
(expect 2 (let [i (atom 0)]
(swap! i inc)
(swap! i inc)
@i)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment