Julia escreve para arquivo

open("myfile.txt", "w") do io
	write(io, "Hello world!")
end
Pouyan