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
Isn't 'macro?' for that?
Thanks, HPW ... macro? it is!