5 lines
104 B
Vala
5 lines
104 B
Vala
|
|
void main() {
|
||
|
|
string s = "Hello,How,Are,You,Today";
|
||
|
|
print(@"$(string.joinv(".", s.split(",")))");
|
||
|
|
}
|