# 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 - https://www.tutorialspoint.com/clojure/clojure_variadic_functions.htm