Table of Contents

Variadic Functions

(defn demo 
   [message & others]
   (str message (clojure.string/join " " others)))

Example

(demo "Hello" "This" "is" "the" "message")

Output

“HelloThis is the message”

Refs