Example Transformation


(transform '((cond (?c ?r1)
                   (else ?r2))
             (if ?c ?r1 ?r2))

'(cond ((< x 0) (- x)) (else x)))

(if (< x 0) (- x) x)

Contents    Page-10    Prev    Next    Page+10    Index