RosettaCodeData/Task/String-length/Ada/string-length-2.adb

7 lines
326 B
Ada
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
Latin_1_Str : String := "Hello World";
UCS_16_Str : Wide_String := "Hello World";
Unicode_Str : Wide_Wide_String := "Hello World";
Latin_1_Length : constant Natural := Latin_1_Str'Length;
UCS_16_Length : constant Natural := UCS_16_Str'Length;
Unicode_Length : constant Natural := Unicode_Str'Length;