- 04 May 2024
- 1 Minute to read
- DarkLight
CreateList
- Updated on 04 May 2024
- 1 Minute to read
- DarkLight
General
The CreateList function can be used to create a List of values.
Syntax
The syntax of the CreateList function is:
CreateList(<value_1>[, <value_n])
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")