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