Created
September 19, 2018 15:03
-
-
Save cataska/d01512450c818e135aa2bcdf2679aaba 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 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