Skip to content

Instantly share code, notes, and snippets.

@cataska
Created September 19, 2018 15:03
Show Gist options
  • Save cataska/d01512450c818e135aa2bcdf2679aaba to your computer and use it in GitHub Desktop.
Save cataska/d01512450c818e135aa2bcdf2679aaba to your computer and use it in GitHub Desktop.
(def numbers [1 2 3])
;; => #'numbers
(conj numbers 4)
;; => [1 2 3 4]
numbers
;; => [1 2 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment