Remember: You are encouraged to turn in individual problems as soon as possible, rather than turning in the whole assignment on the due date. Please mark each problem with the exercise number from the book.
123.else branch is
optional, but if it appears only the last branch can be an
else branch, which has one or more expressions after the
else.
((lambda (proc val)
(* 2 (proc val)))
(lambda (n) (* n n))
5)
Then step through the process of evaluating that AST, similarly to how
is done on pages 295-297. More precisely, you should have a diagram
like the one on the top of page 296, as well as a transcript as is
done in Figure 10.5 on page 298.