atom->string
(atom->string a1)
Description:
Returns any scheme atom as a string representation
of itself
Arguments:
a1 -- a scheme atom
Returns: a string represetation of a1
Examples:
(atom->string #\c) => "c"
(atom->string 5) => "5"
(atom->string 'hello) => "hello"