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

7 lines
326 B
Ada
Raw Permalink Normal View History

2013-04-11 01:07:29 -07: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;