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

Evaluates its body when a condition is true.

(when condition body0 body1) is equivalent to:

(if condition
  (do
    body0
    body1)
  #n)

See also: unless, if

unless