Documentation says:
(do exprs*)
Evaluates the expressions in order and returns the value of the last. If no expressions are supplied, returns nil.
However, I just did this:
(defn blah []
(print "how")
(print "now")
(print "brown")
(print "cow")
(+ 1 1))
Resulting in this:
hownowbrowncow2
So why is this thing needed again?