RosettaCodeData/Task/URL-decoding/Ada/url-decoding-1.adb
2026-04-30 12:34:36 -04:00

7 lines
188 B
Ada

with AWS.URL;
with Ada.Text_IO; use Ada.Text_IO;
procedure Decode is
Encoded : constant String := "http%3A%2F%2Ffoo%20bar%2F";
begin
Put_Line (AWS.URL.Decode (Encoded));
end Decode;