testproj.dpr 175 B

12345678910111213
  1. program testproj;
  2. uses
  3. Forms,
  4. test1 in 'test1.pas' {Form1};
  5. {$R *.RES}
  6. begin
  7. Application.Initialize;
  8. Application.CreateForm(TForm1, Form1);
  9. Application.Run;
  10. end.