do
A very general iteration method.
Example: iterate by two’s
(do ((I 0 (+ I 2))
(J 7 (+ J .5)))
((> (+ I J) 50) 'done)
(print I)
(terpri))
Previous slide
Next slide
Back to first slide
View graphic version