Create an array from a list

listtoarray list

Creates a new array which contains elements from the list.

Example:

make "l [1 a [2 b]]
print :l
make "a listtoarray :l
print :a

Output:

[1 a [2 b]]
{1 a [2 b]}

See also:

List
Array

Table of Content