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