Code Review

Compare your solutions

    #| BEGIN (Введите свое решение) |#
(define (square x) 
  (* x x))

(define (cube x) 
  (* x x x))

(define (cubic a b c)
  (lambda (x) (+ (cube x) (* a (square x)) (* b x) c)))
#| END |#