mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-10 19:35:10 -05:00
23 lines
417 B
ObjectPascal
23 lines
417 B
ObjectPascal
program project1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms
|
|
{ you can add units after this }, Unit1, LResources;
|
|
|
|
{$IFDEF WINDOWS}{$R project1.rc}{$ENDIF}
|
|
|
|
begin
|
|
Application.Title:='TestApp';
|
|
{$I project1.lrs}
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|
|
|