Data update
This commit is contained in:
parent
4bb20c9b71
commit
cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions
2
Task/String-length/Ada/string-length-1.adb
Normal file
2
Task/String-length/Ada/string-length-1.adb
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Str : String := "Hello World";
|
||||
Length : constant Natural := Str'Size / 8;
|
||||
6
Task/String-length/Ada/string-length-2.adb
Normal file
6
Task/String-length/Ada/string-length-2.adb
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue