4 lines
78 B
Text
4 lines
78 B
Text
|
|
for word in "Hello,How,Are,You,Today".split(",")
|
||
|
|
print word + "."
|
||
|
|
end
|