This document provides an overview of basic Clojure data types and control structures. It describes Clojure's support for (boolean) true and false, (character) \a, (keyword) :tag, (map) {:name "Bill", :age 42}, (number) 1, 4.2, (string) "hello", and (symbol) user/foo data types. It also summarizes commonly used control structures like if, do, loop/recur, and for and provides examples of their usage.