问题 I attempted to follow the solution provided in this question, but it simply didn't work. Essentially, my function works like so: (define (item-price size normal-addons premium-addons discount) (define price 0) (+ price (* normal-addon-cost normal-addons) (* premium-addon-cost premium-addons) size) (cond .. some conditions here [else price])) However, I am met with the following error: define: expected only one expression for the function body, but found 2 extra parts Now, I've tried wrapping