Blame todolist.lpr

f754e5
program todolist;
f754e5
f754e5
{$mode objfpc}{$H+}
f754e5
f754e5
uses
f754e5
  {$IFDEF UNIX}{$IFDEF UseCThreads}
f754e5
  cthreads,
f754e5
  {$ENDIF}{$ENDIF}
f754e5
  Interfaces, // this includes the LCL widgetset
f754e5
  Forms, main
f754e5
  { you can add units after this };
f754e5
f754e5
{$R *.res}
f754e5
f754e5
begin
f754e5
  RequireDerivedFormResource:=True;
f754e5
  Application.Initialize;
f754e5
  Application.CreateForm(TfrmMain, frmMain);
f754e5
  Application.Run;
f754e5
end.
f754e5