SICP Exercise 3.34

SICP Exercise 3.34

(define (squarer a b)
  (multiplier a a b))

The flaw is that: suppose we set  the value of b  to 9, but the squarer cannot determine the value of a, because the multiplier constraint must know two of its arguments to set the  other one.

你可能感兴趣的:(SICP Exercise 3.34)