Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
(def items (list a b c))
		
		
	list items { a, b, c };
		
		
	T[] items = new T[] { a, b, c };
		
		
	auto items = [a, b, c];
		
		
	var items = [a, b, c];
		
		
	items = [a, b, c]
		
		
	Items = [A,B,C].
		
		
	integer, dimension(3) :: items
items = [a,b,c]
		
		
	items := []T{a, b, c}
		
		
	def items = [a, b, c]
		
		
	items = [a, b, c]
		
		
	const items = new Array(a, b, c);
		
		
	const items = [a, b, c];
		
		
	val items = listOf(a, b, c)
		
		
	(defparameter *items* (list a b c))
		
		
	items = {a, b, c}
		
		
	NSArray *items=@[a,b,c];
		
		
	$items = [$a, $b, $c];
		
		
	my @items = ($a, $b, $c);
		
		
	items = [a, b, c]
		
		
	items = list((a, b, c))
		
		
	class List(list):
    def __init__(self, *args):
        super().__init__(args)
items = List(a, b, c)
		
		
	items = [a, b, c]
		
		
	let items = vec![a, b, c];
		
		
	val items = List(a, b, c)
		
		
	(define items (list a b c))
		
		
	items := {a . b . c}.
		
		
	Dim salmons As New List(Of String) From
    {"chinook", "coho", "pink", "sockeye"}