mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-11-04 01:19:47 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			226 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			226 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
PROGRAM holyday;
 | 
						|
 | 
						|
{$mode objfpc}{$H+}
 | 
						|
 | 
						|
USES
 | 
						|
  Interfaces,
 | 
						|
  Forms, Main, about;
 | 
						|
 | 
						|
BEGIN
 | 
						|
  Application.Initialize;
 | 
						|
  Application.CreateForm(TForm1, Form1);
 | 
						|
  Application.CreateForm(TAboutBox, AboutBox);
 | 
						|
  Application.Run;
 | 
						|
END.
 | 
						|
 |