In MX2 2D arrays are like in Bmax, just define them with New String[w,h] (or New Int…etc)
Monkey
1
2
3
4
5
6
7
8
9
10
11
12
#Import"<std>"
Using std..
FunctionMain()
Localta:=NewString[2,2]
ta[0,0]="Hallo"
ta[1,0]="World"
Print ta[0,0]+" "+ta[1,0]
End
OT:
Just a side note, the ‘crayon’ highlighter should allow to setup a ‘default’ language when you type in the code-box section… I just noticed you need to select it manually (I’m sure there’s an option for the crayon-module somewhere)