In MAGMA, how do I print a long list of items to a file without automatic line breaks? It seems to me that there is an internal length limit and anything longer than it will result in a automatic line wrap. Of course, this mess up the table that I intend to get.
A simple example is:
SetOutputFile("myfile");
print "x=\t"^20;
UnsetOutputFile();
The result will not stay in one line. I tried to store the result in a string and then use the "Write" command. It gave the same result.