(define (repeated f n) (define (iter i x) (if (= i n) x (iter (+ i 1) (f x)))) (lambda (x) (iter 0 x)))
No comments:
Post a Comment