From: Mk 27 Date: 2009-05-17T04:36:29+09:00 Subject: File.write a long line I notice you can do this with print: print "blah blah", "and so on" but not with File.write, except file.write "blah blah / and so on" which is no good cause it includes all the whitespace. I guess I can live with file.write "blah blah" file.write "and so on" but I thot I'd check and see if there is not some wierd combination of + , / etc that would allow me to break the line, as I imagine the same logic will apply in other ruby methods. Thanks in advance! Ruby seems very nice, I am happy. -- Posted via http://www.ruby-forum.com/.