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