RosettaCodeData/Task/HTTPS/Pascal/https.pas

17 lines
216 B
ObjectPascal
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
{$mode objfpc}{$H+}
uses fphttpclient;
var
s: string;
hc: tfphttpclient;
begin
hc := tfphttpclient.create(nil);
try
s := hc.get('https://www.example.com')
finally
hc.free
end;
writeln(s)
end.