conj
adds elements to a sequence
Usage:
(conj seq form+)
Adds elements to a conjoinable sequence. This behavior will differ depending on the concrete type. A list will prepend, a vector will append, while an object makes no guarantees about ordering.
An Example
(conj [1 2 3 4] 5 6 7 8)
Will return the vector [1 2 3 4 5 6 7 8].