lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> (The former was the answer to a question on IRC the other day: how do I 
> turn a
> table which looks like {1, 2, 0, 9, 7, 5} into the string "120975".)

What about table.concat(t) ?

-- Roberto