Hi,


I am trying to create a list of variable names.
Since I have a lot of variables I have created groups of small number of variables.

My aim is to use the whole list or subgroups of it as a list of variable names in various commands.

For example - lets say I have 100 variables, I created 10 local macros with each containing 10 variable names:

---
Code:
local list1 “var1 var2 … var10”
local list2 “var11 var12 … var20”
…
local list10 “var91 var92 … var100”


I now wish to recall all variables without listing all locals and with the option of retrieving subgroups of the list.
for example (this code won't work obviously):

---
Code:
local listx “list1-list10”

and

local listy "list1-list4"



How can I do this?

Thanks

Mor