/examples/lclversion/lclversionexample.lpr

http://github.com/graemeg/lazarus · Unknown · 18 lines · 14 code · 4 blank · 0 comment · 0 complexity · 5bc01512ea4c0664eaa7d9c5608edeb0 MD5 · raw file

  1. program lclversionexample;
  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
  9. { you can add units after this }, Unit1;
  10. begin
  11. Application.Initialize;
  12. Application.CreateForm(TVersionForm, VersionForm);
  13. Application.Run;
  14. end.