Grow.dpr 207 B

1234567891011121314151617
  1. program Grow;
  2. {$R 'Media.res' 'Media.rc'}
  3. uses
  4. Forms,
  5. MainUnit in 'MainUnit.pas' {FormGrow};
  6. begin
  7. Application.Initialize;
  8. Application.CreateForm(TFormGrow, FormGrow);
  9. Application.Run;
  10. end.