Код Ревью

Сравни свои решения

    #| BEGIN (Write your solution here) |#
(define (compose f g)
  (lambda (x)
    (f (g x))))
#| END |#
    #| BEGIN (Write your solution here) |#
(define (composition f g)
  (lambda (x)
    (f (g x))))
#| END |#
    #| BEGIN (Write your solution here) |#
(define (compose f g)
  (lambda (x)
    (f (g x))))
#| END |#
    #| BEGIN (Write your solution here) |#
(define (composition f g)
  (lambda (x)
    (f (g x))))
#| END |#