My table is similar to this:
Obbies = {{"Cheese", 5, 6, 7}, {"Apples", 4, 7, 2},{"Grapes", 1, 7, 3}}
All I would like to do is find the length (number of tables) of Obbies, and then find the length (number of items, including tables if there were any) of one of those tables.
I have tried both of these:
print(Obbies.len)
print(Obbies[2].len)
They both either return nil, or “table:” followed by a string of about 15 characters.
Am I using the wrong keyword, or is it something else.