Files
lazarus-ccr/components/fpspreadsheet/examples/wikitablemaker/wikitablemaker.lpr

18 lines
266 B
ObjectPascal

program wikitablemaker;
{$mode objfpc}{$H+}
uses
Interfaces, // this includes the LCL widgetset
Forms, lazcontrols, wtMain;
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TMainFrm, MainFrm);
MainFrm.BeforeRun;
Application.Run;
end.