/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
- program test1;
- {$mode objfpc}{$H+}
- uses
- {$IFDEF UNIX}{$IFDEF UseCThreads}
- cthreads,
- {$ENDIF}{$ENDIF}
- Interfaces, // this includes the LCL widgetset
- Forms, Unit1
- { you can add units after this };
- begin
- Application.Initialize;
- Application.CreateForm(TForm1, Form1);
- Application.Run;
- end.