Question: Turn this lisp code into ML code: (defun mult (x)(cond ((null x) 5) ((consp x) (* (car x) (mult (cdr x)))))) (print (mult '(1 7
Turn this lisp code into ML code:
(defun mult (x)(cond ((null x) 5)
((consp x) (* (car x) (mult (cdr x))))))
(print (mult '(1 7 9)))
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
