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.