Total lisp beginner here.
I'm wondering how to convert a character to symbol. Simply what I want is convert #\a to a
Here what I have done so far:
(defun convert(char)
(if(eq char #\a)
(setq char 'a))
char)
This one is works actually but I don't want to add 26 conditions(letters in alphabet) and make a long-dumb code.
Also I'm wondering is there any functions in common lisp that converts character list to symbol list like: (#\h #\e #\l #\l #\o) to (h e l l o) ? I have found intern and make-symbol related to that but they require string as parameter.