Untitled
var x = [[1.0,1],[2.0,2]]
echo "float size: ", sizeof(x[0][0])
echo "array[2,float] size: ", sizeof(x[0])
echo "array[2,array[2,float]] size: ", sizeof(x)INFO
var x = [[1.0,1],[2.0,2]]
echo "float size: ", sizeof(x[0][0])
echo "array[2,float] size: ", sizeof(x[0])
echo "array[2,array[2,float]] size: ", sizeof(x)