Clojure 2
Clojure again Welcome back to my clojure ramblings while I try to understand more. Tonight we are going to pick up where we left off, and that has to do with Vectors. NOTE: I am writing this as a way to digest and understand the book that I am working through entitled. Living Clojure Vectors Vectors can be found because they are wrapped in [] user=> [ :bucket 3 4 :cup ] [:bucket 3 4 :cup] user=> [:thing "other" :mine] [:thing "other" :mine] Vectors are similar to lists we can have a mix of types in them, and some of the same operators can be used on them....