Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # Variadic Functions <code> (defn demo [message & others] (str message (clojure.string/join " " others))) </code> ### Example <code> (demo "Hello" "This" "is" "the" "message") </code> #### Output <code> “HelloThis is the message” </code> ## Refs - https://www.tutorialspoint.com/clojure/clojure_variadic_functions.htm open/variadic-functions.txt Last modified: 2024/10/05 06:15by 127.0.0.1