You've already forked lazarus-ccr
17 lines
236 B
ObjectPascal
17 lines
236 B
ObjectPascal
![]() |
program testCalLite;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
uses
|
||
|
Interfaces, Forms, uMainTestCalLite;
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
begin
|
||
|
RequireDerivedFormResource := True;
|
||
|
Application.Initialize;
|
||
|
Application.CreateForm(TForm1, Form1);
|
||
|
Application.Run;
|
||
|
end.
|
||
|
|