Created
December 17, 2019 15:49
-
-
Save sw-samuraj/150178faa17f670fe1eff6992fca3251 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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