Simple types / Strings

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

(def text (str/join (repeat 3 "7")))
;; text is "777"

;; The same without clojure.string
(def text2 (apply str (repeat 3 "7")))
;; text2 is "777"

(println "text is" text)
(println "text2 is" text2)