mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-11-04 08:19:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			187 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			187 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
program imgview;
 | 
						|
 | 
						|
uses
 | 
						|
  Forms,
 | 
						|
  frmmain in 'frmmain.pas' {MainForm};
 | 
						|
 | 
						|
{$R *.res}
 | 
						|
 | 
						|
begin
 | 
						|
  Application.Initialize;
 | 
						|
  Application.CreateForm(TMainForm, MainForm);
 | 
						|
  Application.Run;
 | 
						|
end.
 |