RosettaCodeData/Task/Hello-world-Line-printer/Delphi/hello-world-line-printer.pas

15 lines
246 B
ObjectPascal

program Project1;
{$APPTYPE CONSOLE}
uses Printers;
var
lPrinterAsTextFile: TextFile;
begin
AssignPrn(lPrinterAsTextFile);
Rewrite(lPrinterAsTextFile);
Writeln(lPrinterAsTextFile, 'Hello World!');
CloseFile(lPrinterAsTextFile);
end.