[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

(equal "a" "a") ==> ()



If you do (LOAD '((LISP) STRING)) you will get a package which implements
strings in MACLISP.  (equal "a" "a") will then return T.  The disadvantage is
that this takes up space, and many applications, such as MACSYMA, are strapped
for space and will take what they can get.  For most applications symbols are
adaquate, and this is what MacLisp defaultly provides.