You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5862 8e941d3f-bd1b-0410-a28a-d453659cc2b4
19 lines
269 B
ObjectPascal
19 lines
269 B
ObjectPascal
program project1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms,
|
|
Unit1;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Title:='Rx Toolbar test';
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.Run;
|
|
end.
|
|
|