How to output data to a file without changing lines

f = open( “test.txt”, “a” )
writecsv( f, (100,200) )
end

Is this a tip? A question?

1 Like
  • Thank you very much. I have solved it