mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-09 16:33:02 +02:00
16 lines
225 B
ObjectPascal
16 lines
225 B
ObjectPascal
program JitClassesTest;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces, Forms, GuiTestRunner, TestJitClass;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TGuiTestRunner, TestRunner);
|
|
Application.Run;
|
|
end.
|
|
|