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.jsl
dt2 = Function2(); // in module2.jsl
dt3 = dt1 << Join(With(dt2), ...);
module1/2.jsl:
Function1/2 = Function({}, {},
dt = ...;
Return(dt);
);