13 lines
180 B
Text
13 lines
180 B
Text
|
|
class Main
|
||
|
|
{
|
||
|
|
public static Void main ()
|
||
|
|
{
|
||
|
|
str := "Hello,How,Are,You,Today"
|
||
|
|
words := str.split(',')
|
||
|
|
words.each |Str word|
|
||
|
|
{
|
||
|
|
echo ("${word}. ")
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|