mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 05:28:17 +02:00
24 lines
508 B
ObjectPascal
24 lines
508 B
ObjectPascal
program translation_demo;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, Main, LocalizedForms, Unit2, StringsUnit
|
|
{ you can add units after this };
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
RequireDerivedFormResource := True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.CreateForm(TLocalizedForm, LocalizedForm);
|
|
Application.CreateForm(TForm2, Form2);
|
|
Application.Run;
|
|
end.
|
|
|