Iteration Macro
(defmacro while (test &body body)
`(do ()
((not ,test))
,@body))
;; Prints even numbers
(setq I 0)
(while (< I 10)
(print I)
(incf I 2))
Previous slide
Next slide
Back to first slide
View graphic version