Code Review

Compare your solutions

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

(define (upper-bound interval) (cdr interval))
#| END |#