/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
- program List;
- uses
- {$IFDEF WIN32}
- Forms,
- {$ENDIF}
- {$IFDEF LINUX}
- QForms,
- {$ENDIF}
- Unit1 in 'Unit1.pas' {frmList},
- MyObjectList in 'MyObjectList.pas';
- {$R *.res}
- begin
- Application.Initialize;
- Application.CreateForm(TfrmList, frmList);
- Application.Run;
- end.