Code Review
Compare your solutions
#| This exercise has no tests.
Any solution is a right answer. |#
(define (new-if predicate then-clause else-clause)
(cond (predicate then-clause)
(else else-clause)))
#| This exercise has no tests.
Any solution is a right answer. |#
(define (new-if predicate then-clause else-clause)
(cond (predicate then-clause)
(else else-clause)))
#| This exercise has no tests.
Any solution is a right answer. |#
(define (new-if predicate then-clause else-clause)
(cond (predicate then-clause)
(else else-clause)))
#| This exercise has no tests.
Any solution is a right answer. |#
(define (new-if predicate then-clause else-clause)
(cond (predicate then-clause)
(else else-clause)))