Print a list and export as txt file
Would this be possible with JSL?For convenience sake I would like it to be printed out into a seperate txt file. My scuffed solution would be to print it into the debug log which would also work but you'd have to go into the debug mode everytime you want to look up something.dt = Current Data Table();
L = dt << Get Column Names(String);
for(i = 1, i < N items(L)+1, i++,
Print(L[i],i); // prints th
...