Changes between Version 1 and Version 2 of Bootstrapping6
- Timestamp:
- Dec 30, 2013, 6:39:42 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Bootstrapping6
v1 v2 36 36 }}} 37 37 but it is cheating, because we presumably still do not have {{{and}}} and {{{cond}}}.) 38 39 Now let's turn these into special forms. The idea is that we do not want to evaluate rest of the argument expressions if we have already reached the base case - a {{{false}}} value for AND or a {{{true}}} value for OR. 40 41 How do we create new special forms? By writing them as a macro. 42