RosettaCodeData/Task/File-input-output/PascalABC.NET/file-input-output.pas
2024-07-13 15:19:22 -07:00

4 lines
80 B
ObjectPascal

begin
var s := ReadAllText('input.txt');
WriteAllText('output.txt',s);
end.