25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

21 satır
337 B

  1. program SimpleGDI;
  2. {$mode objfpc}{$H+}
  3. uses
  4. {$IFDEF UNIX}{$IFDEF UseCThreads}
  5. cthreads,
  6. {$ENDIF}{$ENDIF}
  7. Interfaces, // this includes the LCL widgetset
  8. Forms, uMainForm;
  9. {$R *.res}
  10. begin
  11. RequireDerivedFormResource := True;
  12. Application.Initialize;
  13. Application.CreateForm(TMainForm, MainForm);
  14. Application.Run;
  15. end.