- 16 Apr 2024
- 1 Minute to read
- DarkLight
List
- Updated on 16 Apr 2024
- 1 Minute to read
- DarkLight
General
Values of type List represent a collection of values of other types.
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:
CreateList(1, 3)
The following Expression returns a list that contains the Strings Hello and World:
CreateList("Hello", "World")