summaryrefslogtreecommitdiff
path: root/fpcsrc/packages/fcl-web/examples/helloworld/fcgi/helloworld.lpr
blob: 9d5080ffc45105086a3c97fdff6893c5dfca6f4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
program helloworld;

{$mode objfpc}{$H+}

uses
  fpFCGI, webmodule;

{$R *.res}

begin
  Application.Port:=2015;
  Application.Initialize;
  Application.Run;
end.