Skip to main content
Hi,



I have this code that prints the variables to a text file.



code:
for IndexVariables do
put(IndexVariables);
put // ;
endfor;




This prints only the first 12 characters of each variable.

Why is that?



Thanks, WM
The default column width of put statement is 12. You can change it by :m, where m is the new width. for example



for IndexVariables do

put IndexVariables:15;

put // ;

endfor;

Reply


Didn't find what you were looking for? Try searching on our documentation pages:

AIMMS Developer & PRO | AIMMS How-To | AIMMS SC Navigator