lazarus/examples/xmlreader/TestXMLReader.lpr
mattias 81cbe917e9 examples: testxmlreader, fixed typo
git-svn-id: trunk@51436 -
2016-01-28 12:05:23 +00:00

20 lines
320 B
ObjectPascal

program TestXMLReder;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, TestXMLReaderUnit;
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TXMLReaderForm, XMLReaderForm);
Application.Run;
end.