/components/plotfunction/demo/expression/exprdemo.lpr
http://github.com/graemeg/lazarus · Unknown · 20 lines · 15 code · 5 blank · 0 comment · 0 complexity · f6f2f99404bfe405f1a7535852e6e4fc MD5 · raw file
- 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;
- {$R *.res}
- begin
- Application.Initialize;
- Application.CreateForm(TMainForm, MainForm);
- Application.Run;
- end.