lazarus/examples/codepageconverter/lazconverter.lpr

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.