Hi Are newlines missing from the following output to file? Or am I missing something?
fileout = open("test.txt", "w")
println(fileout, "Hello")
println(fileout, "World")
close(fileout)
File test.txt contains:
HelloWorld
and not what I expected:
Hello
World
Cheers, Greg
