RosettaCodeData/Task/File-input-output/Zkl/file-input-output-1.zkl
2023-07-01 13:44:08 -04: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