mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-10 14:46:30 +02:00
14 lines
175 B
ObjectPascal
14 lines
175 B
ObjectPascal
program testproj;
|
|
|
|
uses
|
|
Forms,
|
|
test1 in 'test1.pas' {Form1};
|
|
|
|
{$R *.RES}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|