break
loop clause
(break &optional val)
Breaks out of the current loop, while or foreach loop skipping the
finally clause and returning the value of val instead of any accumulated
values.
make-html > (loop
(break null))
it: null
make-html > (loop
(break 123))
it: 123