You've already forked lazarus-ccr
17 lines
308 B
ObjectPascal
17 lines
308 B
ObjectPascal
![]() |
program project1;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
uses
|
||
|
Interfaces, // this includes the LCL widgetset
|
||
|
Forms
|
||
|
{ add your units here }, Unit1, RxNew, AboutUnit;
|
||
|
|
||
|
begin
|
||
|
Application.Initialize;
|
||
|
Application.CreateForm(TMainForm, MainForm);
|
||
|
Application.CreateForm(TAboutForm, AboutForm);
|
||
|
Application.Run;
|
||
|
end.
|
||
|
|