Print() into file without new line

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Print() into file without new line

johnthe
Hi All, Looking the code below, f_to_w = File.open(""); // display file open dialog p_ind= aaa*bbb ; print(f_to_w, p_ind +", " ); I want to write sth in file without "automatically appended" new line... I want to see all in one line. But the current print() adds new line for each call? Any solution would be appreciated... John...