Hello,
Is there a way predefine a multi dimentional array with some preset values without using code?
I tried
but it doesn't seem to accept it.
Is there a way predefine a multi dimentional array with some preset values without using code?
I tried
B4X:
dim mda(8,8) as int
mda=Array as int ( (0,0,0,0,0,0,0,0),(0,0,0,0,0,0,0,0),(0,0,0,0,0,0,0,0),(0,0,0,0,0,0,0,0),(0,0,0,0,0,0,0,0),(0,0,0,0,0,0,0,0),(0,0,0,0,0,0,0,0),(0,0,0,0,0,0,0,0))
but it doesn't seem to accept it.