The main difference: Lisp has simple printed representations for interned, uninterned and keyword symbols.
CL-USER 23 > (let ((color-interned-symbols ' (yellow green red)) (color-uninterned-symbols '(#:yellow #:green #:red)) (color-keyword-symbols '( :yellow :green :red))) (list color-interned-symbols color-uninterned-symbols color-keyword-symbols)) ((YELLOW GREEN RED) (#:YELLOW #:GREEN #:RED) (:YELLOW :GREEN :RED))
Here you can learn more about computing with symbols, in Lisp:
https://www.cs.cmu.edu/~dst/LispBook/
In any case, I think the book parent is referring to: http://www.amazon.com/Common-LISP-Introduction-Computation-E...
The main difference: Lisp has simple printed representations for interned, uninterned and keyword symbols.
Lisp also has packages for namespaces of symbols.Here you can learn more about computing with symbols, in Lisp:
https://www.cs.cmu.edu/~dst/LispBook/