[an error occurred while processing this directive]
Expression ::= PrimitiveExpression
PrimitiveExpression ::= Number | #t | #f | Primitive Procedure
Evaluation Rule 1: Primitives. If the expression is a primitive, it evaluates to __________________________________________.
Evaluation Rule 2: Names. If the expression is a name, it evaluates to __________________________________________.Expression ::= ApplicationExpression
Evaluation Rule 3: Application. If the expression is an application:Expression ::= ProcedureExpression
(a) Evaluate all the subexpressions (in any order)
(b) Apply the value of the first subexpression to the values of all the other subexpressions.Application Rule 1: Primitives. If the procedure to apply is a primitive, __________________.
Application Rule 2: Constructed Procedures. If the procedure is a constructed procedure, ___________________ the body of the procedure with each formal parameter replaced by the corresponding actual argument expression value.
Evaluation Rule 4: Lambda. Lambda expressions evaluate to a procedure that takes the given parameters and has the expression as its body. (Do not do anything until it is applied.)Expression ::= IfExpression
Evaluation Rule 5: If. To evaluate an if expression, (a) evaluate the ___________________; then, (b) if the value of the predicate expression is ___________ then the value of the if expression is the value of the alternate expression; otherwise, the value of the if expression is the value of the _____________________________________.
(define square (lambda (x) (* x x)))
You will need more space for this, but its worth doing. Of course, you know the final value, but the important thing is to understand how following the Scheme evaluation rules steps will produce that value. You should be confident that you can determine the value of any Scheme expression just by following the evaluation rules systematically.
Evaluation Rule 3a does not say in what order the subexpressions should be evaluated in. For example, we could evaluate them left to right, or right to left, or in any other order. This is like the MIU-system Rule 3 that does not say which occurance of III should be replaced. Does it ever matter in which order the subexpressions of an application are evaluated? (Tough question, but try to think of a Scheme expression where it would make a difference.)
|
"Somehow it seems to fill my head with ideas - only I don't exactly know what they are!"
The best book on programming for the layman is Alice in
Wonderland; |