You've already forked lazarus-ccr
18 lines
277 B
ObjectPascal
18 lines
277 B
ObjectPascal
![]() |
program Demo;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
uses
|
||
|
Interfaces, // this includes the LCL widgetset
|
||
|
Forms,
|
||
|
main in 'main.pas' {Form1};
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
begin
|
||
|
RequireDerivedFormResource := True;
|
||
|
Application.Initialize;
|
||
|
Application.CreateForm(TForm1, Form1);
|
||
|
Application.Run;
|
||
|
end.
|