mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-29 18:03:54 +02:00
21 lines
317 B
ObjectPascal
21 lines
317 B
ObjectPascal
program sumab;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, Forms, sumabfrm;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
RequireDerivedFormResource := True;
|
|
Application.Scaled:=True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|
|
|