Stop show with sound -- Keyboard shortcut: 'x'  Next slide in show -- Keyboard shortcut: 'n'  1 minute, 11 secondsName binding, Recursion, Iteration, and Continuations - slide 10 : 42

Conditional expressions

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))
Go to exercise
HTML Header functions