How can I get data that is a table inside a table, I mean like this:
t = { {a, b, c}, {d, e, f} };
if I write this line of code:
print( t[1] )
the result will be → → {a, b, c}
BUT
How can I print only the letter "a"? without using ipairs I mean, is there a way to use something like t[1] ?
source share