mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-06 11:52:41 +02:00
17 lines
291 B
ObjectPascal
17 lines
291 B
ObjectPascal
program fpvectorialconverter;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, fpvc_mainform, fpvectorialpkg;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TformVectorialConverter, formVectorialConverter);
|
|
Application.Run;
|
|
end.
|
|
|