Hi,
I have this function that works fine with Java:
(defun char1()
(let ((mychar (read-char *standard-input*)))
'y
)
)
But I need transform this function to return 'y (as a symbol), but using a variable (mychar). If I try to return mychar, I obtain #\y, and If I try to return a string, I obtain "y".
I only want to transform this function to return only y without quotes or without #\ but the only way is to use 'y, but I need to use a variable.
Thanks
