/components/chmhelp/democontrol/project1.lpr
http://github.com/graemeg/lazarus · Unknown · 15 lines · 11 code · 4 blank · 0 comment · 0 complexity · c2dcd86d70c50d49ebef401d60d43ef4 MD5 · raw file
- program project1;
- {$mode objfpc}{$H+}
- uses
- Interfaces, // this includes the LCL widgetset
- Forms
- { add your units here }, Unit1, lhelpcontrolpkg;
- begin
- Application.Initialize;
- Application.CreateForm(TForm1, Form1);
- Application.Run;
- end.