mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-05 20:38:15 +02:00
13 lines
166 B
ObjectPascal
13 lines
166 B
ObjectPascal
program bitbutton;
|
|
|
|
{$mode objfpc}
|
|
|
|
uses forms,
|
|
bitbtnform;
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|