Loop Without Keywords
(let ((I 0))
(loop
(when (> I 10) (return))
(setq I (+ I 1))
(print I)))
Loop iterates forever (unless you call return)
Previous slide
Next slide
Back to first slide
View graphic version