6 lines
111 B
D
6 lines
111 B
D
|
|
void main() {
|
||
|
|
import std.stdio, std.string;
|
||
|
|
|
||
|
|
"Hello,How,Are,You,Today".split(',').join('.').writeln;
|
||
|
|
}
|