17 lines
351 B
ObjectPascal
17 lines
351 B
ObjectPascal
program NeolTest;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
NeolTestMain in 'NeolTestMain.pas' {frmNeolTestMain},
|
|
Editor in 'Editor.pas' {frmEditor};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TfrmNeolTestMain, frmNeolTestMain);
|
|
Application.CreateForm(TfrmEditor, frmEditor);
|
|
Application.Run;
|
|
end.
|