lazarus-ccr/components/industrialstuff/Example/LEDNumberDemo/LEDNumberDemo.lpr
wp_xxyyzz 3b1972ff82 industrial: New demo for TLEDNumber
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7307 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2020-01-20 16:04:03 +00:00

23 lines
363 B
ObjectPascal

program LEDNumberDemo;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, main
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource:=True;
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.