Files
lazarus-ccr/components/rx/version/2.1/Demos/Text90/project1.lpr
alexs75 84c1091074 RxFPC - create folder with version 2.1
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2811 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2013-10-28 20:04:21 +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.