List

Help Contents Data Structure Primitives Constructors List
Word Sentence

List thing1 thing2
(List thing1 thing2 thing3 ...)


outputs a list whose members are its inputs, which can be any Logo datum (word, list, or array).

Examples:

show list "hallo "world	;[hallo world]
show list [] []	;[[][]]
show (list "this "is "a "longer "List)	;[this is a longer list]
show list {arrays in}{a List}	;[{arrays in} {a List}]

Examples:

References:

Word Sentence