mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-17 11:40:37 +01: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.
|
|
|