lambda?
Posted: Sat Nov 05, 2005 7:42 pm
lambda? returns true as expected in the following:
> (define (bob))
(lambda ())
> (lambda? bob)
true
Should lambda? also return true in the following?
> (define-macro (bob))
(lambda-macro ())
> (lambda? bob)
nil
> (define (bob))
(lambda ())
> (lambda? bob)
true
Should lambda? also return true in the following?
> (define-macro (bob))
(lambda-macro ())
> (lambda? bob)
nil