|
|
Evaluation of parenthesized expressions | Here we will emphasize the rules of evaluating a form like (a b c d e) in Scheme |
How is the form (a b c d e) evaluated in Scheme? | The form (a b c d e) appears as a pair of parentheses with a number of
entities inside. The question is how the parenthesized expression is evaluated, and which constraints apply to the evaluation. |
| The evaluation of the empty pair of parentheses ( ) is often - in concrete Scheme systems - considered as the same as '( ), which returns the empty list. However, you should always quote the empty pair of parentheses to denote the empty list. |