Create a list from an array

arraytolist array

Creates the new list which contains elements of array.

Example:

make "a {1 a {2 b}}
print :a
make "l arraytolist :a
print :l

Output:

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

See also:

List
Array

Table of Content