Blob


1 (define (sum term a next b)
2 (if (> a b)
3 0
4 (+ (term a)
5 (sum term (next a) next b))))