lazarus-ccr/components/callite/demo2/testCalLite.lpr
2019-05-26 13:05:38 +00:00

18 lines
264 B
ObjectPascal

program testCalLite;
{$mode objfpc}{$H+}
uses
Interfaces, Forms, uMainTestCalLite;
{$R *.res}
begin
RequireDerivedFormResource := True;
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.