5 lines
128 B
Text
5 lines
128 B
Text
var tmpfile = require('File::Temp');
|
|
var fh = tmpfile.new(UNLINK => 0);
|
|
say fh.filename;
|
|
fh.print("Hello, World!\n");
|
|
fh.close;
|