12345678910111213141516 |
- 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.
|