Problem Creating Arrays

BlitzMax Forums/BlitzMax Beginners Area/Problem Creating Arrays

Strict

Local array:Int[][]

array = New Int[10, 10]


ERROR -> Compile Error: Unable to convert from 'Int Array' to 'Int Array Array'

What am i doing wrong?

Strict

Local array:Int[,] 'Or -> Local array:Int[0,0]

array = New Int[10, 10]

Should fix it

yeah :D i was declaring arrays like in C :s

thanks :p