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. # list* Creates a new list containing the items prepended to the rest, the last of which will be treated as a sequence. ### Syntax <code> (list* listitems [lst]) </code> ### Example <code> (ns clojure.examples.example (:gen-class)) (defn example [] (println (list* 1 [2,3]))) (example) </code> #### Output <code> (1 2 3) </code> ## Refs - https://www.tutorialspoint.com/clojure/clojure_list.htm open/list-a.txt Last modified: 2024/10/05 06:15by 127.0.0.1