cohost/#1.6.scm#

5 lines
126 B
Text
Raw Normal View History

2023-09-09 13:02:51 -04:00
(define (new-if predicate then-clause else-clause)
(cond (predicate then-clause)
(else else-clause)))
(new-if (= 1 1) 0 5)