lazarus/components/plotfunction/demo/expression/exprdemo.lpr
mattias 26cb90f023 renamed plotpanel to plotfunction
git-svn-id: trunk@17519 -
2008-11-22 15:55:23 +00:00

22 lines
393 B
ObjectPascal

program exprdemo;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms
{ you can add units after this }, frmmain, LResources;
{$IFDEF WINDOWS}{$R exprdemo.rc}{$ENDIF}
begin
{$I exprdemo.lrs}
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.