; Adds a list to a vector. Note list remains intact and is added at the end of the vector as a list within the vector. (conj [:a :b :c] '(1 2 3 4)) => [:a :b :c (1 2 3 4)]
; Adds a list to a vector. Note list remains intact and is added at the end of the vector as a list within the vector. (conj [:a :b :c] '(1 2 3 4)) => [:a :b :c (1 2 3 4)]