You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8707 8e941d3f-bd1b-0410-a28a-d453659cc2b4
19 lines
279 B
ObjectPascal
19 lines
279 B
ObjectPascal
program Exdys30;
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces,
|
|
Forms,
|
|
Exdys30u in 'EXDYS30U.PAS' {Form1}, tponguard;
|
|
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Scaled:=True;
|
|
Application.Title:='';
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|