Skip to content

Instantly share code, notes, and snippets.

@sw-samuraj
Created December 17, 2019 15:49
Show Gist options
  • Save sw-samuraj/150178faa17f670fe1eff6992fca3251 to your computer and use it in GitHub Desktop.
Save sw-samuraj/150178faa17f670fe1eff6992fca3251 to your computer and use it in GitHub Desktop.
(def my-ref (ref "immutable data"))
; #'user/my-ref
my-ref
; #<ref@18352d8: "immutable data">
@my-ref
; "immutable data"
(deref my-ref)
; "immutable data"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment