RosettaCodeData/Task/Copy-a-string/Ada/copy-a-string-4.ada

4 lines
198 B
Ada

-- The package Ada.Strings.Unbounded contains the definition of the Unbounded_String type and all its methods
Src : Unbounded_String := To_Unbounded_String("Hello");
Dest : Unbounded_String := Src;