mirror of
https://github.com/mbirth/cm2010.git
synced 2024-11-10 00:16:45 +00:00
15 lines
270 B
ObjectPascal
15 lines
270 B
ObjectPascal
|
program CM2010Project;
|
||
|
|
||
|
uses
|
||
|
Forms,
|
||
|
CM2010 in 'CM2010.pas' {Form1};
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
begin
|
||
|
Application.Initialize;
|
||
|
Application.Title := 'Charge Manager 2010 --- (c)2003 by Markus Birth';
|
||
|
Application.CreateForm(TForm1, Form1);
|
||
|
Application.Run;
|
||
|
end.
|