EMA-XPS Online


SYMBOLP

SYMBOLP
=======

syntax: (symbolp <object>)

This function checks, whether the object is a symbol.
It returns T, when the test was successful, otherwise
NIL.

example:       >(symbolp '(1 2))
               NIL


EMA-XPS Online