f(g(x))
Exercise 5.16: Write a procedure that takes two
procedures as arguments and returns the
procedure that is their composition as a
result.
(define compose
(lambda (f g)
(lambda (x) (f (g x)))))
Q: How to define sqrt_abs (using compose) so that
(sqrt_abs -16) ⇒ 4 ?