Files
lazarus-ccr/components/callite/demo2/testCalLite.lpr

17 lines
236 B
ObjectPascal
Raw Normal View History

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