RosettaCodeData/Task/File-input-output/Zkl/file-input-output-2.zkl
2017-09-25 22:28:19 +02:00

3 lines
170 B
Text

var in=File("input.txt"), out=File("output.txt","w");
foreach line in (in) { out.write(line) } // copy line by line
out.close(); // or out=Void and let GC close the file