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