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