Code Review
Compare your solutions
#| BEGIN (Write your solution here) |#
(define (averager a b c)
(let ((n (make-connector))
(d (make-connector)))
(adder a b n)
(multiplier n d c)
(constant (/ 1 2) d)
'ok))
#| END |#