Modular scripts with functions yielding data tables not working
Hi, I have multiple include modules with functions, which are supposed to each yield a data table reference. In the main script these data tables are joined (see below). Joining, however, fails. I suppose, the error is about namespacing, but could not find a solution on my own. Thanks in advance. main.jsl: include("module1.jsl");include("module2.jsl"); dt1 = Function1(); // in module1.jsldt2 = Fu...
gav2013