How to automatically combine this complex conversion?
In JSL, there is already a list variable abc. How can the values of this variable be written one by one into a new script without automatically re-entering the specific variable values
Thanks!
abc={"A","B","C","D","E"};
dt=New Table("A",Add Rows(1),New Column("A",Character,"Nominal"));
Eval(Parse("dt<<new script(\!"SS\!", abc; );"));
Eval(Parse("dt<<new script(\!"OK\!", abc={\!"A\!",\!"B\!",\!"C\!
...