Within a LOOP, you can use the Common Lisp (return) form in any expression, which will cause the LOOP form to immediately evaluate to the value given to return.
LOOP also has a return clause which works almost identically, the only difference being that you don't surround it with parentheses. The c...