cohost/#1.6.scm#

5 lines
126 B
Text

(define (new-if predicate then-clause else-clause)
(cond (predicate then-clause)
(else else-clause)))
(new-if (= 1 1) 0 5)