RosettaCodeData/Task/URL-encoding/Ada/url-encoding.adb

8 lines
176 B
Ada
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
with AWS.URL;
with Ada.Text_IO; use Ada.Text_IO;
procedure Encode is
Normal : constant String := "http://foo bar/";
begin
Put_Line (AWS.URL.Encode (Normal));
end Encode;