mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 10:57:55 +02:00
16 lines
264 B
ObjectPascal
16 lines
264 B
ObjectPascal
program lazconverter;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms
|
|
{ add your units here }, mainunit;
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TLazConverterForm, LazConverterForm);
|
|
Application.Run;
|
|
end.
|
|
|