Search Results

1
vote

Repeated aplication of functions in Scheme?

(define (repeated f n) (if (= n 1) f (compose f (repeated f (- n 1))))) …