1
0
mirror of https://github.com/Kirill/simplexml.git synced 2026-04-26 15:54:24 +02:00
Files
simplexml/Sample/Test.dpr
T
Kirill Krasnov bef25364bc Version 1.0.1
2010-11-06 22:16:58 +02:00

14 lines
201 B
ObjectPascal

program Test;
uses
Forms,
TestForms in 'TestForms.pas' {TestForm};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TTestForm, TestForm);
Application.Run;
end.