I use DrScheme , I set&nbsp; it to Advanced Student(may be I didn&#39;t do it well), while it seems the book used something else(I may be wrong too). Could someone who has read this book before instruct me on what to do? Basically,&nbsp; how to get the codes snippet of Chapter 1 up and runnig.<br>
(define (parse sexp)<br>(cond<br>[(number? sexp) (num sexp)]<br>[(list? sexp)<br>(case (first sexp)<br>[(+) (add (parse (second sexp))<br>(parse (third sexp)))]<br>[(-) (sub (parse (second sexp))<br>(parse (third sexp)))])]))<br>
<br>Regards,<br>Emeka<br>