IS-EXACTLY
==========
syntax: (is-exactly <object1> <object2>)
; Babylon Lisp
(eql <object1> <object2>)
; Common Lisp
This function compares both objects. It returns T,
when the objects are eq, or when the objects are
numbers of the same type with the same value,
or when the objects represent the same character,
otherwise this function returns NIL.
example: >(is-exactly 'A 'A)
T
>(is-exactly 1 1)
T