RosettaCodeData/Task/HTTPS/Pascal/https.pascal
2018-06-22 20:57:24 +00:00

16 lines
216 B
Text

{$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.