(define from-to-do (lambda (start stop body) (if (> start stop) 'done (begin (body start) (from-to-do (+ 1 start) stop body)))))