Lists
- concat list [list ...]
- Concatenates multiple lists into a single lists. Each element of each list become an element of the new one.
- join list [joinString]
- Joins the elements of a list into one single string using joinString as separator (default: one space).
- lappend list value [value ...]
- Appends each value to the current list as a new list element.
- lindex list index
- Returns the index'th element of the list. The first element has index 0. The last can be accessed using the symbol ``end''.
- list [value ...]
- Concatenates the arguments to make a new list. Each argument becomes an element of the new list.
- llength list
- Returns the number of elements in the list.
- split string [splitChars]
- Returns a list formed by splitting string at instances of
splitChars
and turning the characters between these instances into list elements.