7 lines
98 B
D
7 lines
98 B
D
import std.stdio;
|
|
|
|
void main() {
|
|
string s = "world!";
|
|
s = "Hello " ~ s;
|
|
writeln(s);
|
|
}
|