Skip to content

Instantly share code, notes, and snippets.

@caioaao
Last active May 15, 2018 19:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save caioaao/77b45b404bde8af954c85b29e4f07f88 to your computer and use it in GitHub Desktop.
Save caioaao/77b45b404bde8af954c85b29e4f07f88 to your computer and use it in GitHub Desktop.
(def our-immutable-map {:foo "bar"
:something {:sub 123}})
(def our-immutable-map-2 (assoc our-immutable-map :foo "baz"))
(println our-immutable-map)
(println our-immutable-map-2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment