lazarus-ccr/components/powerpdf/LazarusExamples/LineDemo/LineExample.lpr
jesusr 87fdff01a2 PowerPDF Check In
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@585 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2008-10-06 15:02:30 +00:00

15 lines
206 B
ObjectPascal

program LineExample;
uses
Interfaces,
Forms,
ULineExample in 'ULineExample.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.