lazarus/components/rtticontrols/examples/exampleproject1.lpr
2007-08-21 07:35:06 +00:00

15 lines
184 B
ObjectPascal

program ExampleProject1;
{$mode objfpc}{$H+}
uses
Interfaces,
Forms, Example1;
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.