fork(4) download
  1. program idom101;
  2.  
  3. uses
  4. fphttpclient;
  5.  
  6. const
  7. u = 'http://w...content-available-to-author-only...s.org/';
  8. var
  9. s: string;
  10. begin
  11. with TFPHTTPClient.Create(nil) do try
  12. s := get(u);
  13. writeln(s);
  14. finally
  15. Free;
  16. end;
  17. end.
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Free Pascal Compiler version 2.6.4+dfsg-6 [2015/05/31] for i386
Copyright (c) 1993-2014 by Florian Klaempfl and others
Target OS: Linux for i386
Compiling prog.pas
prog.pas(4,3) Fatal: Can't find unit fphttpclient used by idom101
Fatal: Compilation aborted
Error: /usr/bin/ppc386 returned an error exitcode (normal if you did not specify a source file to be compiled)
stdout
Standard output is empty