RosettaCodeData/Task/HTTPS/Ada/https.ada
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

8 lines
214 B
Ada

with AWS.Client;
with AWS.Response;
with Ada.Text_IO; use Ada.Text_IO;
procedure GetHttps is
begin
Put_Line (AWS.Response.Message_Body (AWS.Client.Get (
URL => "https://sourceforge.net/")));
end GetHttps;