RosettaCodeData/Task/Secure-temporary-file/Groovy/secure-temporary-file.groovy

7 lines
152 B
Groovy
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
def file = File.createTempFile( "xxx", ".txt" )
// There is no requirement in the instructions to delete the file.
//file.deleteOnExit()
println file