I want to evaluate the following: (eval-expr '(times x x) '((x ((plus y x) ((x 2) (y 3))))))
This is a lazy evaluation using scheme. I keep getting the following error:
mcar: expects argument of type ; given 3
The overall answer is 25, but you have to do that by getting the value of (plus y x) and assigning it to the head of the environment. (plus y x) is the caadr of the above expression and the environment is the cadadr. I'm not sure what I'm doing wrong, the code looks right.
Line 4 handles this type of case.
(define (eval-expr E env)
(cond
((eqv? (car E) 'plus) (apply + (eval-params (cdr E) env)))
((eqv? (car E) 'times) (apply * (eval-params (cdr E) env)))
((eqv? (car E) 'divide) (apply / (eval-params (cdr E) env)))
((eqv? (car E) 'minus) (apply - (eval-params (cdr E) env)))
(else '()))) ; confused - return ()
(define (eval-params E env)
(if (null? E) '()
(cons (eval-expr (car E) env)
(eval-params (cdr E) env))))