RosettaCodeData/Task/Secure-temporary-file/Groovy/secure-temporary-file.groovy
2016-12-05 22:15:40 +01:00

6 lines
152 B
Groovy

def file = File.createTempFile( "xxx", ".txt" )
// There is no requirement in the instructions to delete the file.
//file.deleteOnExit()
println file