import std.stdio; void main() { string s = "Hello"; s ~= " world!"; writeln(s); }