Skip to content

Instantly share code, notes, and snippets.

@allenyang79
Created January 7, 2020 00:57
Show Gist options
  • Save allenyang79/e54822488be25e51b2cae3b55694566a to your computer and use it in GitHub Desktop.
Save allenyang79/e54822488be25e51b2cae3b55694566a to your computer and use it in GitHub Desktop.
clojure-cheetsheet
; declare a atom var
(def x (atom 5))
; get value of atom
@x
; change atom's value
(swap! x inc)
; reset
(reset! x 0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment