2013-02-26 66 views

उत्तर

5

आप के बाद set-macro-character और set-dispatch-macro-character, उपयोग कर सकते हैं, उदाहरण के लिए:

(set-dispatch-macro-character #\# #\T 
    (lambda (s c n) 
    `(gettext ,(read s t nil t)))) 
==> T 

आप स्थापित का उपयोग कर सकते वाक्य रचना

(read-from-string "#T\"this is a test\"") 
==> (GETTEXT "this is a test") 
पढ़
संबंधित मुद्दे