Benefits of Polymorphism
One polymorphic function does the work of several more specific functions.
A polymorphic variable can hold a piece of data in different forms without requiring additional variables.
(setq president ’(abe lincoln))
(setq president (format nil "~A" president ))