lazarus-ccr/components/rx/trunk/Demos/Text90/project1.lpr
2013-10-28 20:10:57 +00:00

16 lines
242 B
ObjectPascal

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.