/donations/dcl/demos/List/List.dpr

https://github.com/the-Arioch/jcl · Pascal · 19 lines · 11 code · 3 blank · 5 comment · 0 complexity · d2fc69b0314c547c0939a8ea4cde0a50 MD5 · raw file

  1. program List;
  2. uses
  3. {$IFDEF WIN32}
  4. Forms,
  5. {$ENDIF}
  6. {$IFDEF LINUX}
  7. QForms,
  8. {$ENDIF}
  9. Unit1 in 'Unit1.pas' {frmList},
  10. MyObjectList in 'MyObjectList.pas';
  11. {$R *.res}
  12. begin
  13. Application.Initialize;
  14. Application.CreateForm(TfrmList, frmList);
  15. Application.Run;
  16. end.