lazarus/examples/hello.pp
michael f088b13a3e + Initial import
git-svn-id: trunk@2 -
2000-07-13 10:28:31 +00:00

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.