Files
lasarus_compotents/CmdLine/CmdLineExample.lpr
2024-04-02 08:46:59 +03:00

19 lines
321 B
ObjectPascal

program CmdLineExample;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, wnmainform;
begin
Application.Initialize;
Application.CreateForm(TWMainForm, WMainForm);
Application.Run;
end.