1234567891011121314151617181920 |
- program demo01LCL;
- {$mode objfpc}{$H+}
- uses
- {$IFDEF UNIX}
- cthreads,
- {$ENDIF}
- Interfaces, // this includes the LCL widgetset
- Forms, demo01
- { you can add units after this };
- {$R *.res}
- begin
- Application.Initialize;
- Application.CreateForm(TForm1, Form1);
- Application.Run;
- end.
|