简单类型 / 字符串

(def text "level")

;; A string is a sequence of characters
(doseq [c text]
  (println c))

;; Iterating with index
(doseq [[i c] (map-indexed vector text)]
  (println (str "text[" i "] = \"" c "\"")))