1 minute, 11 seconds | Name binding, Recursion, Iteration, and Continuations - slide 10 : 42 |
if and cond are special forms which evaluate their expressions according to the value of one or more boolean selectors
if and cond are not control structures when applied in the functional paradigm
(if bool-expr expr1 expr2)
(cond (bool-expr1 expr1) ... (bool-exprk exprk) (else exprk+1))