mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-11 06:16:02 +02:00
16 lines
226 B
ObjectPascal
16 lines
226 B
ObjectPascal
PROGRAM holyday;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
USES
|
|
Interfaces,
|
|
Forms, Main, about;
|
|
|
|
BEGIN
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.CreateForm(TAboutBox, AboutBox);
|
|
Application.Run;
|
|
END.
|
|
|