Code Review

Compare your solutions

    #| BEGIN (Write your solution here) |#
(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 |#