M
Mk 27
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.
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.