clojure基本数据类型
->"test"
re-matcher, re-find, re-groups, re-seq
4. 布尔 Boolean
nil和false 为false,其他值都为true
5 字符 Characters
\i, \u00A3
6 关键字 keywords
:a, :b, :c
(keyword "a")
-> :a
(keyword? :a)
-> true
keywords可以是namespaced的, :user/foo, 是user命名空间的一个关键字
::foo 与 :user/foo等价(user是当前命名空间)