3 lines
170 B
Text
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
|