简单类型 / 字符类型

(def ruble \u20BD)
; ruble is the ruble sign

(def lambda \u03BB)
; lambda is the greek small letter lambda

(def pi-text "\u03C0 \u2248 3.14")
; the same escape works inside a string

(println "ruble is" ruble)
(println "lambda is" lambda)
(println "the code point of ruble is" (int ruble))
(println "pi-text is" pi-text)