RosettaCodeData/Task/Collections/Clojure/collections-3.clj

4 lines
106 B
Clojure

['a 4 11] ; somewhere between array and list
(vector 'a 4 11)
(cons ['a 4] 11) ; vectors add at the *end*