Creates a listarray.
The elements of a list can be any of the eight basic PV-WAVE data types, or other structures or arrays of structures, and other lists or associative arrays. Lists can also be used as structure fields.
lst = LIST(1B, 2.2, '3.3', {,a:1, b:lindgen(2)})
INFO, lst, /Full
LST LIST = List(4) BYTE = 1 FLOAT = 2.20000 STRING = '3.3' STRUCT = ** Structure $1, 2 tags, 24 length: A INT 1 B LONG Array(2) PRINT, lst
{ 1 2.20000 3.3{ 1 0 1}}