Clojure - why is the "do" statement necessary for grouping?

I understand that a do block will execute statements in sequence and return the value of the last one. I'd thought that if I didn't need the return value the do would be unnecessary. Not considerin...