RosettaCodeData/Task/HTTP/Ada/http.adb

10 lines
219 B
Ada
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
with Ada.Text_IO; use Ada.Text_IO;
with AWS.Client;
with AWS.Response;
procedure HTTP_Request is
begin
Put_Line (AWS.Response.Message_Body (AWS.Client.Get (URL => "http://www.rosettacode.org")));
end HTTP_Request;