Newline character
Hello,I would like to simply insert a newline character at the end of each item in an array, being written to file. Does JMP not recognize '\n'? If so how would I get it to outputfile1file2file3rather thanfile1\nfile2\nfile3for(i=1,i<=length(Files),i++,
filestring=filestring|| " " || char(Files[i]) || "\n");
f=Save Text File(pypath || "argfile.txt",filestring,mode("replace"));Thanks!