mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-27 18:53:48 +02:00
18 lines
258 B
ObjectPascal
18 lines
258 B
ObjectPascal
program testdatadict;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms
|
|
{ add your units here };
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.Run;
|
|
end.
|
|
|