You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
332 B
19 lines
332 B
program DelphiLuaInteractiveTests; |
|
|
|
uses |
|
Vcl.Forms, |
|
MainFrm in 'MainFrm.pas' {MainForm}, |
|
Lua.API in '..\Lua.API.pas', |
|
Lua in '..\Lua.pas'; |
|
|
|
{$R *.res} |
|
|
|
var |
|
MainForm: TMainForm; |
|
|
|
begin |
|
Application.Initialize; |
|
Application.MainFormOnTaskbar := True; |
|
Application.CreateForm(TMainForm, MainForm); |
|
Application.Run; |
|
end.
|
|
|