open:variadic-functions

Variadic Functions

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

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

Output

“HelloThis is the message”

  • open/variadic-functions.txt
  • 마지막으로 수정됨: 2021/11/23 00:03
  • 저자 127.0.0.1