(unless condition ..body)
  condition: any form
  body: zero or more forms
M

Evaluates its body when a condition is false.

(unless condition body0 body1) is equivalent to:

(if condition
  #n
  (do
    body0
    body1))

See also: when, if

when
and