For each feature I'd like to create an empty list at the start of the workspace, with a structure like this:
_list._x
_list._y
_list._text
Then, at various points during the workspace I need to push a new element onto the end of the list (doesn't matter which end).
So half-way through, the list may be:
_list{0}._x = 123
_list{0}._y = 456
_list{0}._text = "text"
and at the end it may be:
_list{0}._x = 123
_list{0}._y = 456
_list{0}._text = "text"
_list{1}._x = 999
_list{1}._y = 666
_list{1}._text = "hello world"
_list{2}._x = 321
_list{2}._y = 753
_list{2}._text = "goodbye world"
At the end of the workspace I'll ListExplode it. That part I know how to do.
So two requirements:
a) How do I declare the empty list.
b) How do I populate it?
If populating the list (b) automatically instantiates it if it doesn't exist, then (a) can be skipped.
Thanks