Data update
This commit is contained in:
parent
4bb20c9b71
commit
cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions
9
Task/String-append/Ada/string-append.adb
Normal file
9
Task/String-append/Ada/string-append.adb
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
|
||||
with Ada.Text_IO.Unbounded_Io; use Ada.Text_IO.Unbounded_IO;
|
||||
|
||||
procedure String_Append is
|
||||
Str : Unbounded_String := To_Unbounded_String("Hello");
|
||||
begin
|
||||
Append(Str, ", world!");
|
||||
Put_Line(Str);
|
||||
end String_Append;
|
||||
Loading…
Add table
Add a link
Reference in a new issue