Skip to content

Instantly share code, notes, and snippets.

@jaycfields
Created November 13, 2012 01:49
Show Gist options
  • Save jaycfields/4063390 to your computer and use it in GitHub Desktop.
Save jaycfields/4063390 to your computer and use it in GitHub Desktop.
(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