2 lines
79 B
Text
2 lines
79 B
Text
| s = 'Hello,How,Are,You,Today' |
|
|
((s splitOn: ',') joinUsing: '.') printLine.
|
| s = 'Hello,How,Are,You,Today' |
|
|
((s splitOn: ',') joinUsing: '.') printLine.
|