mirror of
https://github.com/Kirill/simplexml.git
synced 2026-04-26 15:54:24 +02:00
14 lines
201 B
ObjectPascal
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.
|