Код Ревью

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

    #| BEGIN (Введите свое решение) |#
(define (lower-bound interval) (car interval))

(define (upper-bound interval) (cdr interval))

(define (sub-interval x y)
  (make-interval (- (lower-bound x) (upper-bound y))
                 (- (upper-bound x) (lower-bound y))))
#| END |#