What platform are you on? What's the hex dump of the file that gets created? 
Are perhaps Unix newlines being used, but you're using something like Notepad?

 -- John

On Dec 7, 2014, at 7:37 PM, Greg Plowman <[email protected]> wrote:

> 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
> 

Reply via email to