Code Review
Compare your solutions
#| This exercise has no tests.
Any solution is a right answer. |#
(define (f g)
(g 2))
(f square)
4
(f (lambda (z) (* z (+ z 1))))
6
(f f)
(f 2)
(2 2)
#| This exercise has no tests.
Any solution is a right answer. |#
(define (f g)
(g 2))
(f square)
4
(f (lambda (z) (* z (+ z 1))))
6
(f f)
(f 2)
(2 2)