mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-08 16:15:59 +02:00
16 lines
182 B
ObjectPascal
16 lines
182 B
ObjectPascal
program extdemo;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
fpCGI, wmext;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Title:='Ext.Direct demo application';
|
|
Application.Initialize;
|
|
Application.Run;
|
|
end.
|
|
|