15 lines
264 B
Plaintext
15 lines
264 B
Plaintext
program NeolTest;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
NeolTestMain in 'NeolTestMain.pas' {frmNeolTestMain};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TfrmNeolTestMain, frmNeolTestMain);
|
|
Application.Run;
|
|
end.
|