continue-if
loop clause
(continue-if test)
Starts the next iteration of the current loop, while or foreach loop if
test condition is true.
make-html > (loop
(for i in (series 5))
(print-line i)
(continue-if
(odd? i))
(print-line i))
1
2
2
3
4
4
5
it: null