mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-12 13:09:25 +02:00
13 lines
211 B
ObjectPascal
13 lines
211 B
ObjectPascal
program hello_world;
|
|
|
|
{$mode objfpc}
|
|
|
|
uses forms,
|
|
helloform;
|
|
|
|
begin
|
|
Application.Initialize; { calls InitProcedure which starts up GTK }
|
|
Application.CreateForm(THello, Hello);
|
|
Application.Run;
|
|
end.
|