Inserting List to List with JSL
Hello,
I dont know how to insert list to list intead of values of list to list.
Insert into makes it one big list.
I need the following to be done:
MainList = {};
AList = {"a1", "a2"};
BList = {"b1", "b2"};
//Result I need:
MainList = {{"a1", "a2"}, {"b1", "b2"}};
Thanks.
vince_faller