/examples/dockmanager/toolbar/test1.lpr

http://github.com/graemeg/lazarus · Unknown · 18 lines · 14 code · 4 blank · 0 comment · 0 complexity · a5d7f90a4633a3c828981ec94be5c342 MD5 · raw file

  1. program test1;
  2. {$mode objfpc}{$H+}
  3. uses
  4. {$IFDEF UNIX}{$IFDEF UseCThreads}
  5. cthreads,
  6. {$ENDIF}{$ENDIF}
  7. Interfaces, // this includes the LCL widgetset
  8. Forms, Unit1
  9. { you can add units after this };
  10. begin
  11. Application.Initialize;
  12. Application.CreateForm(TForm1, Form1);
  13. Application.Run;
  14. end.