array

Monkey Forums/Monkey Beginners/array

wiliamtn(Posted 2014) [#1]
multidimensional array

Hi, can someone tell me how a multidimensional array in monkey works.
I'm used to example:

name of the array [4] [4]

for rows = 0 Until 4

for columns = 0 Until 4

line +=1
Columns += 1

print the array name [rows] [columns]

end


end

But , this not work


Danilo(Posted 2014) [#2]
See topic TWO DIMENSIONAL ARRAYS, it should explain how to allocate and use arrays.