RosettaCodeData/Task/HTTPS/Ada/https.ada

9 lines
214 B
Ada
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
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;