Insert contents of variable/expression rather than variable name into New Script
It would be convenient to be able to assign an expression to a variable and then use that variable to insert the expression into a data table script using New Script. dt = New Table("test dt");
anExpr = Expr(
Show("Hello world.")
);
dt << New Script("hello world", anExpr);
Show(dt << Get Property("hello world"));
However, when I try this, the script's content is only the variable name. It works ...