6 lines
143 B
Ceylon
6 lines
143 B
Ceylon
|
|
shared void tokenizeAString() {
|
||
|
|
value input = "Hello,How,Are,You,Today";
|
||
|
|
value tokens = input.split(','.equals);
|
||
|
|
print(".".join(tokens));
|
||
|
|
}
|