RosettaCodeData/Task/HTTP/Delphi/http-2.pas
2024-10-16 18:07:41 -07:00

19 lines
271 B
ObjectPascal

program ShowHTTP;
{$APPTYPE CONSOLE}
uses IdHttp;
var
s: string;
lHTTP: TIdHTTP;
begin
lHTTP := TIdHTTP.Create(nil);
try
lHTTP.HandleRedirects := True;
s := lHTTP.Get('http://www.rosettacode.org');
Writeln(s);
finally
lHTTP.Free;
end;
end.