返回一个新列表,其中列表位于开头,而要追加的元素位于末尾。
以下是语法。
(conj lst elementlst)
Parameters - 'elementlst'是需要添加到列表中的项目列表。 'lst'是项目列表。
Return Value - 包含Return Value的列表。
以下是Clojure中的缺点示例。
(ns clojure.examples.example
(:gen-class))
(defn example []
(println (conj (list 1 2,3) 4 5)))
(example)
上述程序产生以下输出。
(5 4 1 2 3)