mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-11-04 13:49:34 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			229 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			229 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
program TestMacroScript;
 | 
						|
 | 
						|
{$mode objfpc}{$H+}
 | 
						|
 | 
						|
uses
 | 
						|
  Interfaces, Forms, GuiTestRunner, TestScriptProcs;
 | 
						|
 | 
						|
{$R *.res}
 | 
						|
 | 
						|
begin
 | 
						|
  Application.Initialize;
 | 
						|
  Application.CreateForm(TGuiTestRunner, TestRunner);
 | 
						|
  Application.Run;
 | 
						|
end.
 | 
						|
 |