Secure temporary file: Difference between revisions

Content added Content deleted
m (→‎{{header|Tcl}}: whitespace)
(added Go)
Line 75: Line 75:
// both can only be accessed by the current user (the program?).
// both can only be accessed by the current user (the program?).
}</lang>
}</lang>

=={{header|Go}}==
<lang go>import "io/ioutil"

file_obj, err := ioutil.TempFile("", "foo")</lang>


=={{header|Groovy}}==
=={{header|Groovy}}==