(defn demo [message & others] (str message (clojure.string/join " " others)))
(demo "Hello" "This" "is" "the" "message")
“HelloThis is the message”