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

3 lines
165 B
Text

var d=File("input.txt").read();
(f:=File("output.txt","w")).write(d); f.close(); // one read, one write copy
File("output.txt").pump(Console); // verify by printing