RosettaCodeData/Task/Write-entire-file/Delphi/write-entire-file.delphi
2023-07-01 13:44:08 -04:00

10 lines
153 B
Text

program Write_entire_file;
{$APPTYPE CONSOLE}
uses
System.IoUtils;
begin
TFile.WriteAllText('filename.txt', 'This file contains a string.');
end.