/examples/lclversion/lclversionexample.lpr
http://github.com/graemeg/lazarus · Unknown · 18 lines · 14 code · 4 blank · 0 comment · 0 complexity · 5bc01512ea4c0664eaa7d9c5608edeb0 MD5 · raw file
- program lclversionexample;
- {$mode objfpc}{$H+}
- uses
- {$IFDEF UNIX}{$IFDEF UseCThreads}
- cthreads,
- {$ENDIF}{$ENDIF}
- Interfaces, // this includes the LCL widgetset
- Forms
- { you can add units after this }, Unit1;
- begin
- Application.Initialize;
- Application.CreateForm(TVersionForm, VersionForm);
- Application.Run;
- end.