mirror of
https://github.com/CPunch/Cosmo.git
synced 2024-11-05 08:10:05 +00:00
9 lines
214 B
Plaintext
9 lines
214 B
Plaintext
|
var words = "hello world! this is a sentence with words separated by space":split(" ")
|
||
|
|
||
|
var str = ""
|
||
|
for (var i = 0; i < #words; i++) do
|
||
|
str = str .. words[i]
|
||
|
print(words[i])
|
||
|
end
|
||
|
|
||
|
print("\"" .. str .. "\"")
|