mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-05 15:12:44 +02:00
17 lines
300 B
ObjectPascal
17 lines
300 B
ObjectPascal
program ifps3;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces, Forms, GuiTestRunner, CompilerTestBase, CompilerTestFunctions,
|
|
CompilerTestSimple, CompileTestExtended, pascalscript;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TGuiTestRunner, TestRunner);
|
|
Application.Run;
|
|
end.
|
|
|