Macro: TILL

Source

(defmacro till (test &body body)
  `(do ()
       ((,test))
    ,@body))
Source Context