OdeMachine.dpr 216 B

12345678910111213
  1. program OdeMachine;
  2. uses
  3. Forms,
  4. fOdeMachine in 'fOdeMachine.pas' {FormOdeMachine};
  5. {$R *.res}
  6. begin
  7. Application.Initialize;
  8. Application.CreateForm(TFormOdeMachine, FormOdeMachine);
  9. Application.Run;
  10. end.