Hi there,
i have an array with arrays in it like this:
local x = {
array1 = {
var1 = 5
},
array2 = {
var2 = 7
}
}
so how to find out the number of arrays in array “x” ?
I tried like this: print(#x)
but it says me always “0”.
Hope someone can help
Thanks in advance