I\'m having an issue displaying the elements of an array in Lua programming language. Basically, i created an array with 3 elements, and i\'m trying to display its contents
Why not just print the table in "table.concat" function?
myText = {"hello", "world", "there"} print(table.concat(myText,", "))
hello, world, there