echo.lpr 198 B

123456789101112131415
  1. program echo;
  2. {$mode objfpc}{$H+}
  3. uses
  4. fpFCGI, wmecho;
  5. {$R *.res}
  6. begin
  7. Application.Port:=2015;//Port the FCGI application is listening on
  8. Application.Initialize;
  9. Application.Run;
  10. end.