Clojure Basics

These are my notes as I go through the book Clojure for the Brave and True

Control Flow

if

(if boolean-form
  then-form
  optional-else-form)

do


when