Код Ревью

Сравни свои решения

    #| BEGIN (Введите свое решение) |#
(define (accumulate combiner null-value term a next b)
  (define (iter a result)
    (if (> a b)
        result
        (iter (next a) (combiner result (term a)))))
  (iter a null-value))
#| END |#