简单类型 / 字符串

(require '[clojure.string :as str])

(def start-string
  (-> "3, 2, 1, go!"
      (str/replace "1" "one")
      (str/replace "2" "two")
      (str/replace "3" "three")))
;; start-string is "three, two, one, go!"

(println start-string)