Код Ревью
Сравни свои решения
#| BEGIN (Write your solution here) |#
(define (cubic a b c)
(lambda (x)
(+ (* x x x) (* a x x) (* b x) c)))
#| END |#
#| BEGIN (Write your solution here) |#
(define (cubic a b c)
(lambda (x)
(+ (* x x x) (* a x x) (* b x) c)))
#| END |#