14 lines
175 B
ObjectPascal
14 lines
175 B
ObjectPascal
|
program Project1;
|
||
|
|
||
|
uses
|
||
|
Forms,
|
||
|
Unit1 in 'Unit1.pas' {Form1};
|
||
|
|
||
|
{$R *.RES}
|
||
|
|
||
|
begin
|
||
|
Application.Initialize;
|
||
|
Application.CreateForm(TForm1, Form1);
|
||
|
Application.Run;
|
||
|
end.
|