View Single Post
09-07-08, 03:00 PM   #12
Slakah
A Molten Giant
 
Slakah's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2007
Posts: 863
Do you have errors enabled because if you copied and pasted that code then there are some glaring errors i.e.

MYTABLE = {"A","B","C")
should be
Code:
MYTABLE = {"A","B","C"}
and if you want it to output "ABC" then this:

for val in pairs(MYTABLE) do
MYSTRING = MYSTRING .. val
end
should be

Code:
for i, val in pairs(MYTABLE) do
   MYSTRING = MYSTRING .. val
end
  Reply With Quote