RosettaCodeData/Task/HTTP/Pascal/http-1.pas
2023-07-01 13:44:08 -04:00

16 lines
215 B
ObjectPascal

{$mode objfpc}{$H+}
uses fphttpclient;
var
s: string;
hc: tfphttpclient;
begin
hc := tfphttpclient.create(nil);
try
s := hc.get('http://www.example.com')
finally
hc.free
end;
writeln(s)
end.