if
(define diff (lambda (x y) (if (> x y) (- x y) (if (< x y) (- y x) 0))))
Instructor: Max Hailperin