Name

list — Create a list

Synopsis

list element [ element ...]

Description

The list command takes any number of arguments and returns a list.

Example

puts [list a b c [list 1 2 3]]
	

Produces:

a b c {1 2 3}