| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
(dotimes (variable limit result) body ...)
==>
(do ((tlimit limit)
(variable 0 (+ variable 1)))
((>= variable tlimit) result)
body ...)
(dolist (variable lexpr result) body ...)
==>
(begin
(for-each (lambda (variable) body ...) lexpr)
(let ((variable '())) result))
|