mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-11-02 22:49:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			342 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			342 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
program BitmapScanLine1;
 | 
						|
 | 
						|
{$mode objfpc}{$H+}
 | 
						|
 | 
						|
uses
 | 
						|
  {$IFDEF UNIX}{$IFDEF UseCThreads}
 | 
						|
  cthreads,
 | 
						|
  {$ENDIF}{$ENDIF}
 | 
						|
  Interfaces, // this includes the LCL widgetset
 | 
						|
  Forms
 | 
						|
  { add your units here }, Unit1;
 | 
						|
 | 
						|
begin
 | 
						|
  Application.Title:='project1';
 | 
						|
  Application.Initialize;
 | 
						|
  Application.CreateForm(TForm1, Form1);
 | 
						|
  Application.Run;
 | 
						|
end.
 | 
						|
 |