lazarus-ccr/components/powerpdf/LazarusExamples/FontDemo/FontExample.lpr
jesusr d408e930fb PowerPDF, fixed FontDemo example
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1014 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2009-11-23 17:38:55 +00:00

17 lines
222 B
ObjectPascal

program FontExample;
{$MODE Delphi}
uses
Interfaces,
Forms,
UFontExample in 'UFontExample.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.