Clojure's Built-in Data Structures
There are four concrete data structures built into Clojure that you will want to know: lists, sets, hash-maps, and vectors. Clojure also has a virtual data structure called a sequence, which behaves very much like an interator.
Today you will go over the code in the activity to learn how these are used.