mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 01:39:35 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			275 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			275 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
program fpvectorialconverter;
 | 
						|
 | 
						|
{$mode objfpc}{$H+}
 | 
						|
 | 
						|
uses
 | 
						|
  Interfaces, // this includes the LCL widgetset
 | 
						|
  Forms, fpvc_mainform;
 | 
						|
 | 
						|
{$R *.res}
 | 
						|
 | 
						|
begin
 | 
						|
  Application.Initialize;
 | 
						|
  Application.CreateForm(TformVectorialConverter, formVectorialConverter);
 | 
						|
  Application.Run;
 | 
						|
end.
 | 
						|
 |