You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sicp-all-tasks/sicp/5_002e24

6 lines
271 B

Exercise 5.24: Implement cond as a new
basic special form without reducing it to if. You will have to
construct a loop that tests the predicates of successive cond clauses
until you find one that is true, and then use ev-sequence to evaluate
the actions of the clause.