Files
lazarus-ccr/components/callite/demo2/testCalLite.lpr
wp_xxyyzz 7ffd37fa20 CalLite: Initial commit
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5312 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2016-11-03 23:42:04 +00:00

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.