RosettaCodeData/Task/Secure-temporary-file/Julia/secure-temporary-file-2.julia

7 lines
171 B
Text
Raw Permalink Normal View History

2015-11-18 06:14:39 +00:00
ENV["TMPDIR"] = pwd()
(fname, tio) = mktemp()
println(fname, " created as a \"temporary\" file.")
println(tio, msg)
close(tio)
println("\"", msg, "\" written to ", fname)