= Appending = ''Part of'' TutorialFundamentals == Description == Shows how appending works with D strings. == Example == {{{ #!d import std.stdio; void main() { string foo; foo = "hello, "; foo ~= "world!"; writeln(foo); } }}} == Output == {{{ hello, world! }}} == More Info == Much more info can be found in the [http://www.digitalmars.com/d/2.0/arrays.html#strings D Specification].