RosettaCodeData/Task/Write-entire-file/Delphi/write-entire-file.delphi

11 lines
153 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
program Write_entire_file;
{$APPTYPE CONSOLE}
uses
System.IoUtils;
begin
TFile.WriteAllText('filename.txt', 'This file contains a string.');
end.