mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-10-31 16:21:45 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			378 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			378 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| program fpcorelexplorer;
 | |
| 
 | |
| {$mode objfpc}{$H+}
 | |
| 
 | |
| uses
 | |
|   {$IFDEF UNIX}{$IFDEF UseCThreads}
 | |
|   cthreads,
 | |
|   {$ENDIF}{$ENDIF}
 | |
|   Interfaces, // this includes the LCL widgetset
 | |
|   Forms, fpce_mainform, fpvectorialpkg
 | |
|   { you can add units after this };
 | |
| 
 | |
| {$R *.res}
 | |
| 
 | |
| begin
 | |
|   Application.Initialize;
 | |
|   Application.CreateForm(TformCorelExplorer, formCorelExplorer);
 | |
|   Application.Run;
 | |
| end.
 | |
| 
 | 
