1
0
Fork 0
lazarus-tutorials/filecopy/filecopy.lpr

23 lines
390 B
ObjectPascal
Raw Normal View History

2021-10-27 15:47:29 -04:00
program filecopy;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, maincopy
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource:=True;
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.