Files
lazarus-ccr/components/everettrandom/latest_stable/demo/everett_demo.lpr
gbamber 78ad20a286 Everett Random component V0.1.3.0
Initial commit

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7144 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2019-08-22 08:28:56 +00:00

24 lines
465 B
ObjectPascal

program everett_demo;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, umainform
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource:=True;
Application.Title:='Demo of TEverett';
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(Tmainform, mainform);
Application.Run;
end.