Files
lazarus-ccr/components/rx/trunk/demos/Text90/project1.lpr

16 lines
242 B
ObjectPascal
Raw Normal View History

program project1;
{$mode objfpc}{$H+}
uses
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, Unit1, rxnew;
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.