Delphi

Delphi code posted by vadv
created at 16 Mar 00:50, updated at 09 May 11:50

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
program Project1;
uses
  Forms,
  Unit1 in 'Unit1.pas' { Form1 } ;

{$R *.res}

begin
  ReportMemoryLeaksOnShutdown := DebugHook<>0;
  Application.Initialize;
  Application.MainFormOnTaskbar := true;
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end. 
278 Bytes in 2 ms with coderay