Name:
Anonymous
2008-04-04 15:53
Why does SICP have so many fuggin errors?
example:
(define (sum term a next b)
(if (> a b)
0
(+ (term a)
(sum term (next a) next b))))
(define (<name> a b)
(if (> a b)
0
(+ (<term> a)
(<name> (<next> a) b))))
It is apparent the last line of each one is different
next b?
Holy grail of shit