简单类型 / 字符串

(def s1 "three")
(def s2 "two")
(def s3 (str s1 ", " s2))
(def s-one (str s3 ", one"))
(def s-go (str s-one ", " "go!"))
;; s-go is "three, two, one, go!"

(println "s-go is" s-go)