lazarus/examples/lclversion/lclversionexample.lpr

19 lines
332 B
ObjectPascal

program lclversionexample;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms
{ you can add units after this }, Unit1;
begin
Application.Initialize;
Application.CreateForm(TVersionForm, VersionForm);
Application.Run;
end.