Files
lazarus-ccr/examples/process/processdemo.lpr

16 lines
287 B
ObjectPascal
Raw Permalink Normal View History

program ProcessDemo;
{$mode objfpc}{$H+}
uses
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, ProcessDemoMainForm;
begin
Application.Initialize;
Application.CreateForm(TMultipleProcessDemoForm,MultipleProcessDemoForm);
Application.Run;
end.