You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
190 B

  1. program Delphi;
  2. uses
  3. Forms,
  4. uMainForm in 'uMainForm.pas' {MainForm};
  5. {$R *.res}
  6. begin
  7. Application.Initialize;
  8. Application.CreateForm(TMainForm, MainForm);
  9. Application.Run;
  10. end.