This week's worksheet👇

mentor11.pdf

mentor11_sol.pdf

Scheme concept review

Useful links:

https://cs61a.org/articles/scheme-builtins/

https://cs61a.org/articles/scheme-spec/

Primitives

Call expressions *prefix notation in scheme

Form: (operator operand operand)

  1. Evaluate operator and operands from left to right
  2. Apply operator value on operand values

Special forms: define variables

scm> (define x 5)

x

scm> (define y (+ x 4)