Problems meant to show you know the special forms. For example, you
find that a certain implementation of Scheme is lacking "cond". Redefine the
following procedure using "if".
(define (foobar x y)
(cond ((= x y) 12)
((< x y) (- y x))
(else (square x)) ))