while
macro
(while test &body forms)
Specialized form of loop.
loop
make-html > (macroexpand-1 '(while test a b c)) it: ((loop (break-if (not test)) a b c) true)