lambda?
builtin-function
(lambda? expr)
Returns true if expr is a lambda.
expr
make-html > (defun f (x) (not x)) it: f make-html > (lambda? f) it: true make-html > (lambda? 'f) it: false