Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Clojure

Idiom #134 Create a new list

Declare and initialize a new list items, containing 3 elements a, b, c.

(def items (list a b c))
list items { a, b, c };

For most uses, you actually want vector<> rather than list<>.

New implementation...