Код Ревью
Сравни свои решения
#| BEGIN (Write your solution here) |#
(define (lower-bound interval)
(car interval))
(define (upper-bound interval)
(cdr interval))
#| END |#
#| BEGIN (Write your solution here) |#
(define (lower-bound interval)
(car interval))
(define (upper-bound interval)
(cdr interval))
#| END |#