pa3ck Posted February 28, 2014 Share Posted February 28, 2014 Hi there, I'd have a question about table.insert. I have a table like this: table = { [1] = {"123", 1, 2, 3 }, [ 2 ] = {"456", 3, 2, 1 } } I want to insert a set of values like ' {"123", 1, 2, 3 } ', how would do that? Link to comment
Castillo Posted February 28, 2014 Share Posted February 28, 2014 table.insert ( table, { "132", 3, 2, 1 } ) Link to comment
pa3ck Posted February 28, 2014 Author Share Posted February 28, 2014 Ah, jees, I tried everything, except that... Thank you! Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now