General
Values of type List represent a collection of values of other types.
your title goes here
Example: A list could hold zero, one or more Numbers.
Creation
You can create lists using the CreateList function.
### Examples
The following Expression returns a list that contains the Numbers 1 and 3:
Mail & Deploy Expression
CreateList(1, 3)
The following Expression returns a list that contains the Strings Hello and World:
Mail & Deploy Expression
CreateList("Hello", "World")