Name: Anonymous 2009-11-03 3:57
/prog/riders - do you
a. keep one clause of a special form on the same line, i.e.
or
b. split special forms?
a. keep one clause of a special form on the same line, i.e.
(define (foo a b)
(cond ((> (+ a b) 0) (+ a b))
(else 0)))or
b. split special forms?
(define (foo a b)
(cond
((> (+ a b) 0)
(+ a b))
(else 0)))