You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6655 8e941d3f-bd1b-0410-a28a-d453659cc2b4
15 lines
238 B
ObjectPascal
15 lines
238 B
ObjectPascal
program JvLEDDemo;
|
|
|
|
uses
|
|
Interfaces, Forms,
|
|
LEDMain in 'LEDMain.pas' {LEDDemoMain};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Scaled:=True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TLEDDemoMain, LEDDemoMain);
|
|
Application.Run;
|
|
end.
|