15 lines
250 B
ObjectPascal
15 lines
250 B
ObjectPascal
program XSLT;
|
|
|
|
uses
|
|
Forms,
|
|
XSLTMain in 'XSLTMain.pas' {XSLTMainForm};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.Title := 'XSLT Sample';
|
|
Application.CreateForm(TXSLTMainForm, XSLTMainForm);
|
|
Application.Run;
|
|
end.
|