Unless

(unless test expression1 ...)

If test returns false, evaluates the given expressions in order. The result of the final expression is given as the result of unless.

If test returns true, unless returns #f.

See Also: when