I feel like this is a really silly question...
t = {
a = {x,y},
b = {z},
}
How do I print the first value of the key 'a'? ("x") Neither
print(t["a"][1])
nor
print(t.a[1])
does it, so how would I go about?
What's the difference between '[]' and '.' btw?