in my case it works perfectly.
               _
   _       _ _(_)_     |  A fresh approach to technical computing
  (_)     | (_) (_)    |  Documentation: http://docs.julialang.org
   _ _   _| |_  __ _   |  Type "help()" for help.
  | | | | | | |/ _` |  |
  | | |_| | | | (_| |  |  Version 0.3.3 (2014-10-21 20:18 UTC)
 _/ |\__'_|_|_|\__'_|  |  Official http://julialang.org release
|__/                   |  x86_64-linux-gnu


On 2014年12月08日 11:37, Greg Plowman 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