lazarus/components/tachart/demo/tools/toolsdemo.lpr
ask 0060d87d21 TAChart: Add tools demo
git-svn-id: trunk@24346 -
2010-04-01 11:46:13 +00:00

21 lines
342 B
ObjectPascal

program toolsdemo;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, main, tachartlazaruspkg
{ you can add units after this };
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.