| 123456789101112131415161718192021 |
- program test;
- {$mode objfpc}{$H+}
- uses
- {$IFDEF UNIX}{$IFDEF UseCThreads}
- cthreads,
- {$ENDIF}{$ENDIF}
- Interfaces, // this includes the LCL widgetset
- Forms, umain
- { you can add units after this };
- {$R *.res}
- begin
- RequireDerivedFormResource:=True;
- Application.Initialize;
- Application.CreateForm(TaForm, aForm);
- Application.Run;
- end.
|