Name: Anonymous 2011-12-12 12:55
Is it a good practice to use return? Is it a good practice to use continuation-passing-style, where one specifies several return paths?
(defun test (x a b c)
(cond ((< x 0) (funcall a))
((= x 0) (funcall b))
(t (funcall c))))