Dear friends, again with new doubt, I supposed to do a program in other language(i.e not in English). How Can be it Created? How do I give meaning to keywords
? expecting your help asap
? expecting your help asap
Discuss and learn Lisp programming of all dialects
This is a read-only archive of lispforum.com. The forum was locked to new users and posts and is preserved here as static HTML from a database snapshot taken on 2019-09-07.
3 posts · 3220 views
CL-USER> (defun äöü (ärg)
(format t "äöü: ~a~%" ärg)
ärg)
ÄÖÜ
CL-USER> (äöü 'ß)
äöü: ß
ß
But you must be aware that 2.1.3 Standard Characters says that only ASCII characters 10 and 32-126 need to be supported by all conforming Common Lisp implementations and it's left to the implementor to support more characters or not, what means that Unicode support in symbol names is optional and not guaranteed at all. There also still exist computer operating systems with no proper Unicode support.